Skip to content

Commit 09d790e

Browse files
author
rchevrier
committed
fix pipeline
1 parent cb209a7 commit 09d790e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Run unit tests
5252
shell: bash -el {0}
5353
run: |
54-
pytest tests --cov=src --cov-report=xml:coverage-ut.xml --cov-report=term
54+
pytest tests --cov=src/fcollections --cov-report=xml:coverage-ut.xml --cov-report=term
5555
mv .coverage .coverage-ut
5656
- name: Upload unit test coverage artifacts
5757
uses: actions/upload-artifact@v4
@@ -104,7 +104,7 @@ jobs:
104104
- name: Run unit tests without geo
105105
shell: bash -el {0}
106106
run: |
107-
pytest tests/implementations/collections --ignore tests/implementations/collections/test_area_selector.py --without-geo-packages --cov=src --cov-report=xml:coverage-ut-nogeo.xml --cov-report=term
107+
pytest tests/implementations/collections --ignore tests/implementations/collections/test_area_selector.py --without-geo-packages --cov=src/fcollections --cov-report=xml:coverage-ut-nogeo.xml --cov-report=term
108108
mv .coverage .coverage-ut-nogeo
109109
- name: Upload unit test no-geo coverage artifacts
110110
uses: actions/upload-artifact@v4
@@ -129,7 +129,7 @@ jobs:
129129
pip install -e ".[testing]"
130130
- name: Run integration tests
131131
run: |
132-
pytest integration_tests --cov=src --cov-report=xml:coverage-it.xml --cov-report=term
132+
pytest integration_tests --cov=src/fcollections --cov-report=xml:coverage-it.xml --cov-report=term
133133
mv .coverage .coverage-it
134134
- name: Upload integration test coverage artifacts
135135
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)