Skip to content

Commit

Permalink
ci: combine debug and non-debug web_api tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dhdaines committed Feb 6, 2023
1 parent a1f53bc commit 214b081
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ jobs:
- name: Run tests
run: |
gunicorn readalongs.app:app --bind 0.0.0.0:5000 --daemon
cd test && coverage run run.py prod && DEVELOPMENT=1 coverage run test_web_api.py && coverage xml
cd test
coverage run --parallel-mode run.py prod
DEVELOPMENT=1 coverage run --parallel-mode test_web_api.py
coverage combine
coverage xml
- name: Nitpicking
run: |
Expand Down

0 comments on commit 214b081

Please sign in to comment.