We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cfde22 commit 6b53d7cCopy full SHA for 6b53d7c
.travis.yml
@@ -8,10 +8,8 @@ python:
8
- "nightly"
9
install:
10
- pip install tox tox-travis
11
- - pip install -r requirements.txt
12
script:
13
- - tox
14
- - tox -e py27 -- -x --integration-tests
+ - tox -e integration
15
matrix:
16
allow_failures:
17
- python: "nightly"
tox.ini
@@ -12,9 +12,11 @@ commands = py.test test/
deps = -rrequirements.txt
-rrequirements-dev.txt
-[testenv:py27]
+[testenv:integration]
passenv = *
-commands = py.test test/ {posargs}
+commands = py.test test/ -x --integration-tests
18
+deps = -rrequirements.txt
19
+ -rrequirements-dev.txt
20
21
[flake8]
22
ignore = D100, # missing docstring in public module
0 commit comments