Skip to content

Commit 62d1892

Browse files
committed
Restructured tests and bench directories
1 parent 0c69e13 commit 62d1892

15 files changed

+2
-2
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
python -m pip install -e .[dev]
2222
- name: Run benchmarks
2323
run: |
24-
python -m unittest discover -s tests/bench
24+
python -m unittest discover -s tests -p 'test_bench_*.py'

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python -m pip install -e .[dev]
2222
- name: Run tests and code coverage
2323
run: |
24-
coverage run --source=src -m unittest discover -s tests/unit
24+
coverage run --source=src -m unittest discover -s tests -p 'test_unit_*.py'
2525
coverage report -m
2626
- name: Upload coverage reports to Codecov
2727
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)