Skip to content

Commit 36e2e4c

Browse files
authored
Merge pull request django-commons#952 from jdufresne/tox-base
Avoid re-specifying default values for basepython in tox.ini
2 parents f1fc1ea + 6b5a384 commit 36e2e4c

File tree

2 files changed

+3
-16
lines changed

2 files changed

+3
-16
lines changed

.travis.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,9 @@ matrix:
2929
env: TOXENV=py35-dj111
3030
- python: 3.6
3131
env: TOXENV=py36-dj111
32-
- python: 2.7
33-
env: TOXENV=flake8
34-
- python: 2.7
35-
env: TOXENV=isort
36-
- python: 2.7
37-
env: TOXENV=readme
32+
- env: TOXENV=flake8
33+
- env: TOXENV=isort
34+
- env: TOXENV=readme
3835
install:
3936
- pip install tox codecov
4037
script:

tox.ini

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@ envlist =
88
readme
99

1010
[testenv]
11-
basepython =
12-
py27: python2.7
13-
py33: python3.3
14-
py34: python3.4
15-
py35: python3.5
16-
py36: python3.6
1711
deps =
1812
dj18: Django>=1.8,<1.9
1913
dj19: Django>=1.9,<1.10
@@ -32,20 +26,16 @@ usedevelop = true
3226
commands = make coverage TEST_ARGS='{posargs:tests}'
3327

3428
[testenv:flake8]
35-
basepython = python2.7
3629
commands = make flake8
3730
deps = flake8
3831

3932
[testenv:isort]
40-
basepython = python2.7
4133
commands = make isort_check_only
4234
deps = isort
4335

4436
[testenv:jshint]
45-
basepython = python2.7
4637
commands = make jshint
4738

4839
[testenv:readme]
49-
basepython = python2.7
5040
commands = python setup.py check -r -s
5141
deps = readme_renderer

0 commit comments

Comments
 (0)