Skip to content

Commit

Permalink
updated workflow so tests work
Browse files Browse the repository at this point in the history
  • Loading branch information
jyan1999 committed May 6, 2023
1 parent 68d9942 commit ed9a4b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythontests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Install dependencies
run: python -m pip install --upgrade pip
- name: Setup
run: pip install -e .
run: pip install -e .[harl]
- name: Run tests
run: |
python -m unittest discover -s testing/ -p "*_test.py"
Expand All @@ -30,7 +30,7 @@ jobs:
python -m pip install --upgrade pip
pip install coverage
- name: Setup # needs -e flag for coverage tests to work
run: pip install -e .
run: pip install -e .[harl]
- name: Run tests and generate coverage report
run: |
coverage run -m unittest discover -s testing/ -p "*_test.py"
Expand Down

0 comments on commit ed9a4b4

Please sign in to comment.