Skip to content

Commit

Permalink
Fix unittest invocation in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sjagoe committed Dec 2, 2023
1 parent ff471c8 commit d176952
Showing 1 changed file with 2 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 @@ -20,7 +20,7 @@ jobs:
needs: [lint]
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", '3.12', 'pypy2', 'pypy3']
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy2", "pypy3"]
os: [windows-2019, ubuntu-20.4, macos-11]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -36,7 +36,7 @@ jobs:
pip --version
- name: Run tests
run: |
python -m unittest discover haas
python -m unittest discover -v -t .haas
python -m haas haas
lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit d176952

Please sign in to comment.