Skip to content

Commit 2f7f2bb

Browse files
committed
Fix tests order
1 parent 08d3ab1 commit 2f7f2bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ jobs:
2525
2626
- name: Test CFPQ_Data with coverage
2727
run: |
28-
pytest --cov=cfpq_data --doctest-modules -vv -s tests cfpq_data
28+
pytest --cov=cfpq_data --doctest-modules -vv -s cfpq_data tests
2929
codecov

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: Test CFPQ_Data
3838
run: |
39-
pytest --doctest-modules -vv -s tests cfpq_data
39+
pytest --doctest-modules -vv -s cfpq_data tests
4040
4141
# Only supported on linux platform
4242
docker:
@@ -62,4 +62,4 @@ jobs:
6262
uses: addnab/docker-run-action@v3
6363
with:
6464
image: cfpq_data:latest
65-
run: python3 -m pytest --doctest-modules -vv -s tests cfpq_data
65+
run: python3 -m pytest --doctest-modules -vv -s cfpq_data tests

0 commit comments

Comments
 (0)