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:
2727
2828 # pypy/pypy3: not included with coverage reports (much slower then).
2929 - python : pypy
30- env : TOXENV=pypy-dj111-sqlite_file
30+ env : TOXENV=pypy-dj111-sqlite_file SKIP_COVERAGE=1
3131 - python : pypy3
32- env : TOXENV=pypy3-dj110-sqlite
32+ env : TOXENV=pypy3-dj110-sqlite SKIP_COVERAGE=1
3333
3434 - python : 3.6
35- env : TOXENV=checkqa,docs
35+ env : TOXENV=checkqa,docs SKIP_COVERAGE=1
3636
3737 - stage : PyPI Release
3838 if : tag IS present
@@ -65,8 +65,8 @@ install:
6565
6666 - pip install tox==2.9.1
6767 - |
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
7070 PYTEST_DJANGO_COVERAGE=1
7171 export PYTEST_ADDOPTS='--cov=pytest_django --cov=tests --cov=pytest_django_test --cov-report=term-missing:skip-covered'
7272 export _PYTESTDJANGO_TOX_EXTRA_DEPS=pytest-cov
You can’t perform that action at this time.
0 commit comments