Skip to content

Commit f57af39

Browse files
committed
Fix groups.
1 parent 9e21095 commit f57af39

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Run unit tests and doctests.
5757
shell: bash -l {0}
58-
run: uv run --extra test pytest --nbmake -m "unit or (not integration and not end_to_end)" --cov=src --cov=tests --cov-report=xml -n auto
58+
run: uv run --group test pytest --nbmake -m "unit or (not integration and not end_to_end)" --cov=src --cov=tests --cov-report=xml -n auto
5959

6060
- name: Upload unit test coverage reports to Codecov with GitHub Action
6161
uses: codecov/codecov-action@v5
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Run integration tests.
6666
shell: bash -l {0}
67-
run: uv run --extra test pytest --nbmake -m integration --cov=src --cov=tests --cov-report=xml -n auto
67+
run: uv run --group test pytest --nbmake -m integration --cov=src --cov=tests --cov-report=xml -n auto
6868

6969
- name: Upload integration test coverage reports to Codecov with GitHub Action
7070
uses: codecov/codecov-action@v5
@@ -73,7 +73,7 @@ jobs:
7373

7474
- name: Run end-to-end tests.
7575
shell: bash -l {0}
76-
run: uv run --extra test pytest --nbmake -m end_to_end --cov=src --cov=tests --cov-report=xml -n auto
76+
run: uv run --group test pytest --nbmake -m end_to_end --cov=src --cov=tests --cov-report=xml -n auto
7777

7878
- name: Upload end_to_end test coverage reports to Codecov with GitHub Action
7979
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)