Skip to content

Commit

Permalink
Merge pull request #9 from uw-it-aca/develop
Browse files Browse the repository at this point in the history
enable deprecation warnings for running tests (#8)
  • Loading branch information
fanglinfang committed Feb 10, 2024
2 parents 32794ad + ba18a4c commit 107b30e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Run Tests
run: |
python -m compileall ${APP_NAME}/
coverage run ${APP_NAME}/test.py -v
python -Wd -m coverage run ${APP_NAME}/test.py -v
- name: Report Test Coverage
env:
Expand Down
3 changes: 1 addition & 2 deletions uw_coda/tests/test_endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ def test_cgpa(self):
self.assertEqual(fail_rate['current_median'], 3.4)

def test_secondary(self):

fail_rate = uw_coda.get_course_cgpa(POL_S_AA_LABEL)
self.assertEquals(fail_rate, {})
self.assertEqual(fail_rate, {})

0 comments on commit 107b30e

Please sign in to comment.