stash
All checks were successful
/ test (push) Successful in 56s

This commit is contained in:
j3d1 2024-11-28 18:55:18 +01:00
parent 401b71571f
commit 1a3aab4d41
9 changed files with 90 additions and 98 deletions

View file

@ -17,12 +17,12 @@ jobs:
- name: Install dependencies
working-directory: core
run: pip3 install -r requirements.dev.txt
- name: Run django tests
- name: Run django tests with coverage
working-directory: core
run: python3 manage.py test
- name: Run django coverage
run: coverage run manage.py test
- name: Evaluate coverage
working-directory: core
run: coverage manage.py test
run: coverage report
deploy:
needs: [ test ]