Skip to content

Commit

Permalink
removed preformatting of coverage reports
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdodson authored Dec 11, 2023
1 parent a2351ce commit 325ca3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
CAL_ID: c_6ed17073345c64d5b392f5a8ef7b4a62938f12c8fc5fecfa4b7256ef88acad28@group.calendar.google.com
run: |
cd ScheduleBuilder/google_calendar
pytest --cov=./ --cov-report=xml test.py
pytest --cov=./ test.py
- name: Run Account Tests with Coverage
Expand All @@ -50,13 +50,13 @@ jobs:
python manage.py makemigrations
python manage.py migrate
cd account
pytest --cov=./ --cov-report=xml regtests.py
pytest --cov=./ regtests.py
- name: Combine Coverage Reports
run: |
cd ScheduleBuilder
coverage combine google_calendar/coverage.xml account/coverage.xml
coverage combine google_calendar/.coverage account/.coverage
coverage xml -o combined_coverage.xml
- name: Upload Coverage to Codecov
Expand Down

0 comments on commit 325ca3c

Please sign in to comment.