Skip to content

Commit 6b53d7c

Browse files
committed
Attempt to fix travis tox testing
1 parent 7cfde22 commit 6b53d7c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ python:
88
- "nightly"
99
install:
1010
- pip install tox tox-travis
11-
- pip install -r requirements.txt
1211
script:
13-
- tox
14-
- tox -e py27 -- -x --integration-tests
12+
- tox -e integration
1513
matrix:
1614
allow_failures:
1715
- python: "nightly"

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ commands = py.test test/
1212
deps = -rrequirements.txt
1313
-rrequirements-dev.txt
1414

15-
[testenv:py27]
15+
[testenv:integration]
1616
passenv = *
17-
commands = py.test test/ {posargs}
17+
commands = py.test test/ -x --integration-tests
18+
deps = -rrequirements.txt
19+
-rrequirements-dev.txt
1820

1921
[flake8]
2022
ignore = D100, # missing docstring in public module

0 commit comments

Comments
 (0)