We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fddd93 commit a701ec3Copy full SHA for a701ec3
.github/workflows/ci_cd.yml
@@ -77,12 +77,9 @@ jobs:
77
python -m pip install --upgrade .[tests]
78
python -m pip install --upgrade tox-gh-actions
79
80
- - name: Test with tox |
+ - name: Test with tox
81
# Only the tox environment specified in the tox.ini gh-actions is run
82
- run: |
83
- ~/start.bat
84
- tox -e test
85
- ~/stop.bat
+ run: tox -e test -- --ignore=tests/e2e
86
87
tests-e2e:
88
name: End to end tests and coverage
@@ -102,7 +99,9 @@ jobs:
102
99
- name: Test with tox
103
100
104
101
run: |
105
- tox -e test -- tests/e2e
+ ~/start.bat
+ tox -e test
+ ~/stop.bat
106
107
doc-build:
108
name: "Doc build"
0 commit comments