11 lines
188 B
Bash
Executable File
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
|