Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
lorinkoz committed Mar 6, 2021
1 parent 371e8ae commit 92f3ede
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/code.yaml
Expand Up @@ -51,16 +51,16 @@ jobs:
${{ runner.os }}-py-poetry-
- name: Install Dependencies
run: |
python -m pip install --upgrade pip poetry
python -m poetry export --without-hashes --dev --format requirements.txt > requirements.txt
python -m pip install -r requirements.txt
python -m pip install --upgrade pip
python -m pip install --upgrade poetry
python -m poetry install
- name: Run Tests
run: |
python -m coverage run dunm_sandbox/manage.py test tests
python -m poetry run coverage run dunm_sandbox/manage.py test tests
- name: Upload coverage to Coveralls
if: matrix.python-version == '3.6' && matrix.os == 'ubuntu-latest'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
run: |
python -m pip install coveralls
python -m coveralls
python -m poetry run pip install coveralls
python -m poetry run coveralls

0 comments on commit 92f3ede

Please sign in to comment.