Skip to content

Commit 6037572

Browse files
committed
build: remove 2.6 testing on travis
Python 2.6 seems to be no longer supported on travis.ci so we're letting it drop here. We're retaining testing on 2.6 in tox for now though.
1 parent 0502dd7 commit 6037572

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ python:
33
- "3.6"
44
- "3.5"
55
- "2.7"
6-
- "2.6"
76
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
87
install: pip install -r requirements.txt
98
# command to run tests, e.g. python setup.py test

tox.ini

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@ python_classes = Test Describe
1212
python_functions = it_ they_ and_it_ but_it_
1313

1414
[tox]
15-
envlist = py26, py27, py33, py34, py35
15+
envlist = py26, py27, py34, py35, py36
1616

1717
[testenv]
1818
deps =
1919
behave
2020
lxml
21-
mock
2221
pyparsing
2322
pytest
2423

@@ -35,16 +34,10 @@ deps =
3534
pyparsing
3635
pytest
3736

38-
[testenv:py33]
39-
deps =
40-
behave
41-
lxml
42-
pyparsing
43-
pytest
44-
45-
[testenv:py34]
37+
[testenv:py27]
4638
deps =
4739
behave
4840
lxml
41+
mock
4942
pyparsing
5043
pytest

0 commit comments

Comments
 (0)