Skip to content

Commit

Permalink
CI: run all tests
Browse files Browse the repository at this point in the history
Without adding `-p "*test.py"`, it will only run tests in test/test.py.

Signed-off-by: akarin <[email protected]>
  • Loading branch information
AkarinVS committed Jul 1, 2021
1 parent 2487914 commit a7eb084
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ jobs:
pip install .
- name: Run test
run: python -m unittest discover -s test
run: python -m unittest discover -s test -p "*test.py"
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ jobs:
pip install .
- name: Run test
run: python -m unittest discover -s test
run: python -m unittest discover -s test -p "*test.py"
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ jobs:
popd
- name: Run test
run: python -m unittest discover -s test
run: python -m unittest discover -s test -p "*test.py"

0 comments on commit a7eb084

Please sign in to comment.