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 a099a5a commit 09fe647Copy full SHA for 09fe647
.travis.yml
@@ -13,4 +13,4 @@ install:
13
- pip install tox
14
15
script:
16
- - tox -e $(tox -l | grep py$(echo $TRAVIS_PYTHON_VERSION | sed -e 's/pypypy/pypy/g') | tr '\n' ',')
+ - sh scripts/runtox.sh
scripts/runtox.sh
@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
+pyversion="$(echo py$TRAVIS_PYTHON_VERSION | sed -e 's/pypypy/pypy/g' -e 's/-dev//g')"
3
+exec tox -e $(tox -l | grep $pyversion | tr '\n' ',')
0 commit comments