Skip to content

Commit ed290c5

Browse files
committed
Fix.
1 parent 65f8f31 commit ed290c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Run unit tests and doctests.
5353
shell: bash -l {0}
54-
run: uv run --extra test pytest -- -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
54+
run: uv run --extra test pytest -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
5555

5656
- name: Upload coverage report for unit tests and doctests.
5757
if: runner.os == 'Linux' && matrix.python-version == '3.10'
@@ -60,7 +60,7 @@ jobs:
6060

6161
- name: Run end-to-end tests.
6262
shell: bash -l {0}
63-
run: uv run --extra test pytest -- -m end_to_end --cov=./ --cov-report=xml -n auto
63+
run: uv run --extra test pytest -m end_to_end --cov=./ --cov-report=xml -n auto
6464

6565
- name: Upload coverage reports of end-to-end tests.
6666
if: runner.os == 'Linux' && matrix.python-version == '3.10'

0 commit comments

Comments
 (0)