Skip to content

Commit df7ca6e

Browse files
committed
Report on every env
1 parent 8cd61fe commit df7ca6e

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,26 @@ jobs:
5858
python: "3.5"
5959
os: windows-latest
6060
tox_env: "py35-xdist"
61+
use_coverage: true
6162
- name: "windows-py36"
6263
python: "3.6"
6364
os: windows-latest
6465
tox_env: "py36-xdist"
66+
use_coverage: true
6567
- name: "windows-py37"
6668
python: "3.7"
6769
os: windows-latest
6870
tox_env: "py37-twisted-numpy"
71+
use_coverage: true
6972
- name: "windows-py37-pluggy"
7073
python: "3.7"
7174
os: windows-latest
7275
tox_env: "py37-pluggymaster-xdist"
76+
use_coverage: true
7377
- name: "windows-py38"
7478
python: "3.8"
7579
os: windows-latest
76-
tox_env: "py38"
80+
tox_env: "py38-xdist"
7781
use_coverage: true
7882

7983
# Ubuntu jobs – find the rest of them in .travis.yml
@@ -86,6 +90,7 @@ jobs:
8690
python: "2.7"
8791
os: ubuntu-latest
8892
tox_env: "py27-nobyte-numpy-xdist"
93+
use_coverage: true
8994
- name: "ubuntu-py27-pexpect-py37-twisted"
9095
python: "3.7"
9196
os: ubuntu-latest
@@ -100,6 +105,7 @@ jobs:
100105
python: "3.7"
101106
os: ubuntu-latest
102107
tox_env: "py37-pluggymaster-xdist"
108+
use_coverage: true
103109
- name: "ubuntu-py37-pexpect-py37-twisted"
104110
python: "3.7"
105111
os: ubuntu-latest
@@ -113,10 +119,12 @@ jobs:
113119
python: "pypy2"
114120
os: ubuntu-latest
115121
tox_env: "pypy-xdist"
122+
use_coverage: true
116123
- name: "ubuntu-pypy3"
117124
python: "pypy3"
118125
os: ubuntu-latest
119126
tox_env: "pypy3-xdist"
127+
use_coverage: true
120128

121129
# MacOS jobs
122130
- name: "macos-py27"
@@ -127,7 +135,7 @@ jobs:
127135
- name: "macos-py38"
128136
python: "3.8"
129137
os: macos-latest
130-
tox_env: "py38-pexpect,py38-xdist"
138+
tox_env: "py38-xdist"
131139
use_coverage: true
132140

133141
steps:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ envlist =
2121

2222
[testenv]
2323
commands =
24-
{env:_PYTEST_TOX_COVERAGE_RUN:} pytest -vrx {posargs:{env:_PYTEST_TOX_DEFAULT_POSARGS:}}
24+
{env:_PYTEST_TOX_COVERAGE_RUN:} pytest {posargs:{env:_PYTEST_TOX_DEFAULT_POSARGS:}}
2525
coverage: coverage combine
2626
coverage: coverage report
2727
passenv = USER USERNAME COVERAGE_* TRAVIS PYTEST_ADDOPTS

0 commit comments

Comments
 (0)