38 lines
878 B
Bash
Executable File
38 lines
878 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Runs the autobahn websocket conformance test against tornado in both
|
|
# python2 and python3. Output goes in ./reports/servers/index.html.
|
|
#
|
|
# The --cases and --exclude arguments can be used to run only part of
|
|
# the suite. The default is --exclude="9.*" to skip the relatively slow
|
|
# performance tests; pass --exclude="" to override and include them.
|
|
|
|
set -e
|
|
|
|
# build/update the virtualenvs
|
|
tox
|
|
|
|
.tox/py26/bin/python server.py --port=9001 &
|
|
PY26_SERVER_PID=$!
|
|
|
|
.tox/py27/bin/python server.py --port=9002 &
|
|
PY27_SERVER_PID=$!
|
|
|
|
.tox/py32/bin/python server.py --port=9003 &
|
|
PY32_SERVER_PID=$!
|
|
|
|
.tox/pypy/bin/python server.py --port=9004 &
|
|
PYPY_SERVER_PID=$!
|
|
|
|
sleep 1
|
|
|
|
.tox/py27/bin/wstest -m fuzzingclient
|
|
|
|
kill $PY26_SERVER_PID
|
|
kill $PY27_SERVER_PID
|
|
kill $PY32_SERVER_PID
|
|
kill $PYPY_SERVER_PID
|
|
wait
|
|
|
|
echo "Tests complete. Output is in ./reports/servers/index.html"
|