2018-07-09 16:21:14 -04:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ "$WR_TEST" = "no" ]; then
|
|
|
|
python setup.py test
|
|
|
|
cd karma-tests && make test && cd ..
|
|
|
|
else
|
|
|
|
cd webrecorder-tests
|
2019-01-30 15:06:24 -05:00
|
|
|
INTRAVIS=1 pytest -m "pywbtest and chrometest"
|
2018-07-09 16:21:14 -04:00
|
|
|
fi
|