Files
deb-python-falcon/travis_scripts/run_tests.sh
Kurt Griffiths 1379641638 chore(tox): Fix errors due to new versions of flake8 and requests (#949)
Also fix Jython incompatibilities that were discovered in the process.
2016-11-18 19:51:40 -06:00

11 lines
188 B
Bash
Executable File

if [ "$JYTHON" = "true" ]; then
set -e
$HOME/jython/bin/pytest tests
# Smoke test
$HOME/jython/bin/jython falcon/bench/bench.py -t 1 -b falcon falcon-ext
else
tox
fi