Skip to content

Merge pull request #81 from LeComptoirDesPharmacies/main #148

Merge pull request #81 from LeComptoirDesPharmacies/main

Merge pull request #81 from LeComptoirDesPharmacies/main #148

Workflow file for this run

name: Run python Test
on:
push:
branches:
- 'develop'
- 'feature/**'
- 'bugfix/**'
- 'hotfix/**'
jobs:
Test_application:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- uses: actions/cache@v2
if: startsWith(runner.os, 'Linux')
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install -r requirements.txt \
--extra-index-url https://${{ secrets.DEV_DEPLOY_GEMFURY_TOKEN }}:@pypi.fury.io/lcdp-dev/ \
--extra-index-url https://${{ secrets.PROD_DEPLOY_GEMFURY_TOKEN }}:@pypi.fury.io/lcdp/
- name: Prepare app
run: python prepare.py
- name: Run tests
run: python -m nose2 tests -v