- Add pytest to test CI

This commit is contained in:
Nate Harris 2023-10-02 23:01:47 -06:00
parent 4ae2ffe377
commit 10218ecce9
1 changed files with 5 additions and 1 deletions

View File

@ -56,7 +56,11 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --output-file=flake8.output
cat flake8.output
- name: Test with Coverage
- name: Test with pytest
run: |
pytest
- name: Generate Coverage
run: |
coverage run
coverage xml