File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ jobs:
27
27
28
28
# pypy/pypy3: not included with coverage reports (much slower then).
29
29
- python : pypy
30
- env : TOXENV=pypy-dj111-sqlite_file
30
+ env : TOXENV=pypy-dj111-sqlite_file SKIP_COVERAGE=1
31
31
- python : pypy3
32
- env : TOXENV=pypy3-dj110-sqlite
32
+ env : TOXENV=pypy3-dj110-sqlite SKIP_COVERAGE=1
33
33
34
34
- python : 3.6
35
- env : TOXENV=checkqa,docs
35
+ env : TOXENV=checkqa,docs SKIP_COVERAGE=1
36
36
37
37
- stage : PyPI Release
38
38
if : tag IS present
@@ -65,8 +65,8 @@ install:
65
65
66
66
- pip install tox==2.9.1
67
67
- |
68
- # Setup coverage tracking, but not with "checkqa" nor "pypy*" .
69
- if [[ "$TOXENV " != "checkqa" ]] && [[ "${TOXENV#pypy}" == "$TOXENV " ]]; then
68
+ # Setup coverage tracking.
69
+ if [[ "$SKIP_COVERAGE " != "1 " ]]; then
70
70
PYTEST_DJANGO_COVERAGE=1
71
71
export PYTEST_ADDOPTS='--cov=pytest_django --cov=tests --cov=pytest_django_test --cov-report=term-missing:skip-covered'
72
72
export _PYTESTDJANGO_TOX_EXTRA_DEPS=pytest-cov
You can’t perform that action at this time.
0 commit comments