Skip to content

Commit 77da314

Browse files
committed
Travis: really only test checkqa for main python versions (2.7, 3.4)
Fixes 85bc9d5.
1 parent 1f279de commit 77da314

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,8 @@ env:
2525
- TESTENV=python3.4-master-postgres
2626
- TESTENV=python3.4-master-sqlite
2727
- TESTENV=python3.4-master-sqlite_file
28-
- TESTENV=checkqa-python2.6
2928
- TESTENV=checkqa-python2.7
30-
- TESTENV=checkqa-python3.2
31-
- TESTENV=checkqa-python3.3
3229
- TESTENV=checkqa-python3.4
33-
- TESTENV=checkqa-pypy
34-
- TESTENV=checkqa-pypy3
3530
matrix:
3631
allow_failures:
3732
- env: TESTENV=pypy-master-sqlite_file

generate_configurations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def make_travis_yml(envs):
245245
""").strip("\n")
246246
testenvs = '\n'.join(' - TESTENV=%s' % testenv_name(env) for env in envs)
247247
checkenvs = '\n'.join(' - TESTENV=checkqa-%s' %
248-
python for python in PYTHON_VERSIONS)
248+
python for python in PYTHON_MAIN_VERSIONS)
249249
allow_failures = '\n'.join(' - env: TESTENV=%s' %
250250
testenv_name(env) for env in envs
251251
if env.django_version == 'master')

0 commit comments

Comments
 (0)