Skip to content

Commit

Permalink
Merge pull request #660 from kgriffs/travis_toxenv
Browse files Browse the repository at this point in the history
chore(tox): Use standard variable to determine tox environment
  • Loading branch information
kgriffs committed Nov 23, 2015
2 parents f172291 + 2d3357b commit 4095492
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ cache:
directories:
- $HOME/.cache/pip
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py27_cython
- TOX_ENV=py33
- TOX_ENV=py33_cython
- TOX_ENV=py34
- TOX_ENV=py34_cython
- TOX_ENV=pypy
- TOX_ENV=pypy3
- TOX_ENV=pep8
- TOX_ENV=pylint
- TOX_ENV=py27_smoke
- TOX_ENV=py27_smoke_cython
- TOXENV=py26
- TOXENV=py27
- TOXENV=py27_cython
- TOXENV=py33
- TOXENV=py33_cython
- TOXENV=py34
- TOXENV=py34_cython
- TOXENV=pypy
- TOXENV=pypy3
- TOXENV=pep8
- TOXENV=pylint
- TOXENV=py27_smoke
- TOXENV=py27_smoke_cython
- JYTHON=true

script: travis_scripts/run_tests.sh
Expand Down
2 changes: 1 addition & 1 deletion travis_scripts/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ if [ "$JYTHON" = "true" ]; then
# Smoke test
$HOME/jython/bin/jython falcon/bench/bench.py -t 1 -b falcon falcon-ext
else
tox -e $TOX_ENV
tox
fi

0 comments on commit 4095492

Please sign in to comment.