We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3ad224 commit d49af17Copy full SHA for d49af17
.travis.yml
@@ -146,14 +146,16 @@ before_script:
146
script:
147
- PATH=$VIRTUAL_ENV/bin:$PATH
148
- export LD_LIBRARY_PATH=$VIRTUAL_ENV/lib:$LD_LIBRARY_PATH
149
- - py.test
+ - [[ $TRAVIS_PYTHON_VERSION != "2."* ]] && py.test
150
-W default
151
-W "ignore:SelectableGroups:DeprecationWarning"
152
-W "ignore:the imp module:DeprecationWarning:gpg.gpgme:15"
153
-W "ignore:'U' mode::docutils.io"
154
-W "ignore:unclosed:ResourceWarning:roundup.roundup.demo"
155
-W "ignore:unclosed file:ResourceWarning:enum"
156
-v --maxfail=20 test/ --cov=roundup
157
-
+ - [[ $TRAVIS_PYTHON_VERSION == "2."* ]] && py.test
158
+ -v --maxfail=20 test/ --cov=roundup
159
+
160
after_success:
161
- codecov
0 commit comments