We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 626d9ae commit 2efb271Copy full SHA for 2efb271
.github/workflows/main.yml
@@ -54,7 +54,7 @@ jobs:
54
55
- name: Run unit tests and doctests.
56
shell: bash -l {0}
57
- run: tox -e pytest -- -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
+ run: tox -e test -- -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
58
59
- name: Upload unit test coverage reports to Codecov with GitHub Action
60
uses: codecov/codecov-action@v4
@@ -63,7 +63,7 @@ jobs:
63
64
- name: Run end-to-end tests.
65
66
- run: tox -e pytest -- -m end_to_end --cov=./ --cov-report=xml -n auto
+ run: tox -e test -- -m end_to_end --cov=./ --cov-report=xml -n auto
67
68
- name: Upload end_to_end test coverage reports to Codecov with GitHub Action
69
0 commit comments