Skip to content

Commit

Permalink
tests: use pytest as a test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
narenaryan committed Oct 26, 2024
1 parent 1929984 commit 621fb5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install project requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
- name: Run unit tests
run: python -m unittest discover tests
run: pytest tests
3 changes: 3 additions & 0 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-r requirements.txt
coverage==7.6.4
pytest==8.3.3

0 comments on commit 621fb5d

Please sign in to comment.