Skip to content

Commit

Permalink
adding pytest runner as well
Browse files Browse the repository at this point in the history
  • Loading branch information
brennanfreeze committed Aug 11, 2024
1 parent 6593777 commit 5145c37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pytest
name: Run Tests with Pytest

on: [push, pull_request]

Expand All @@ -18,6 +18,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install pytest
- name: Run pytest
Expand Down

0 comments on commit 5145c37

Please sign in to comment.