Skip to content

Commit 09fe647

Browse files
committed
chore: fix travis
1 parent a099a5a commit 09fe647

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ install:
1313
- pip install tox
1414

1515
script:
16-
- tox -e $(tox -l | grep py$(echo $TRAVIS_PYTHON_VERSION | sed -e 's/pypypy/pypy/g') | tr '\n' ',')
16+
- sh scripts/runtox.sh

scripts/runtox.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)