File tree Expand file tree Collapse file tree 1 file changed +26
-19
lines changed Expand file tree Collapse file tree 1 file changed +26
-19
lines changed Original file line number Diff line number Diff line change @@ -27,24 +27,24 @@ jobs:
27
27
fail-fast : false
28
28
matrix :
29
29
name : [
30
- " windows-py35" ,
31
- " windows-py36" ,
32
- " windows-py37" ,
33
- " windows-py37-pluggy" ,
34
- " windows-py38" ,
35
-
36
- " ubuntu-py35" ,
37
- " ubuntu-py36" ,
38
- " ubuntu-py37" ,
39
- " ubuntu-py37-pluggy" ,
40
- " ubuntu-py37-freeze" ,
30
+ # "windows-py35",
31
+ # "windows-py36",
32
+ # "windows-py37",
33
+ # "windows-py37-pluggy",
34
+ # "windows-py38",
35
+ #
36
+ # "ubuntu-py35",
37
+ # "ubuntu-py36",
38
+ # "ubuntu-py37",
39
+ # "ubuntu-py37-pluggy",
40
+ # "ubuntu-py37-freeze",
41
41
" ubuntu-py38" ,
42
42
" ubuntu-pypy3" ,
43
43
44
- " macos-py37" ,
45
- " macos-py38" ,
46
-
47
- " linting" ,
44
+ # "macos-py37",
45
+ # "macos-py38",
46
+ #
47
+ # "linting",
48
48
]
49
49
50
50
include :
@@ -126,12 +126,19 @@ jobs:
126
126
run : |
127
127
python -m pip install --upgrade pip
128
128
pip install tox coverage
129
+
130
+ - name : Test (no coverage)
131
+ if : " matrix.skip_coverage"
132
+ env :
133
+ _PYTEST_TOX_COVERAGE_RUN : " "
134
+ run : |
135
+ echo "_PYTEST_TOX_COVERAGE_RUN = $_PYTEST_TOX_COVERAGE_RUN"
136
+ tox -e ${{ matrix.tox_env }}
137
+
129
138
- name : Test
130
- shell : bash
139
+ if : " ! matrix.skip_coverage "
131
140
run : |
132
- if [[ "${{ matrix.skip_coverage }}" = "true" ]]; then
133
- export _PYTEST_TOX_COVERAGE_RUN=
134
- fi
141
+ echo "_PYTEST_TOX_COVERAGE_RUN = $_PYTEST_TOX_COVERAGE_RUN"
135
142
tox -e ${{ matrix.tox_env }}
136
143
137
144
- name : Prepare coverage token
You can’t perform that action at this time.
0 commit comments