Skip to content

Commit fa72839

Browse files
committed
Use Python 3.5.1 on Ubuntu and use verbose in py37 for coverage
1 parent e30036a commit fa72839

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
tox_env: "py38"
6969

7070
- name: "ubuntu-py35"
71-
python: "3.5"
71+
python: "3.5.1"
7272
os: ubuntu-latest
7373
tox_env: "py35-xdist"
7474
- name: "ubuntu-py36"
@@ -79,6 +79,7 @@ jobs:
7979
python: "3.7"
8080
os: ubuntu-latest
8181
tox_env: "py37-lsof-numpy-oldattrs-pexpect-twisted"
82+
verbose: "-vv"
8283
- name: "ubuntu-py37-pluggy"
8384
python: "3.7"
8485
os: ubuntu-latest
@@ -127,15 +128,15 @@ jobs:
127128
128129
- name: Test without coverage
129130
if: "matrix.skip_coverage"
130-
run: "tox -e ${{ matrix.tox_env }}"
131+
run: "tox -e ${{ matrix.tox_env }} -- ${{ matrix.verbose }}"
131132

132133
- name: Test with coverage
133134
if: "! matrix.skip_coverage"
134135
env:
135136
_PYTEST_TOX_COVERAGE_RUN: "coverage run -m"
136137
COVERAGE_PROCESS_START: ".coveragerc"
137138
_PYTEST_TOX_EXTRA_DEP: "coverage-enable-subprocess"
138-
run: "tox -e ${{ matrix.tox_env }}"
139+
run: "tox -e ${{ matrix.tox_env }} -- ${{ matrix.verbose }}"
139140

140141
- name: Prepare coverage token
141142
if: success() && !matrix.skip_coverage && ( github.repository == 'pytest-dev/pytest' || github.event_name == 'pull_request' )

0 commit comments

Comments
 (0)