1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00
pywb/.travis/test.sh
John Berlin 9be9815da4 travis integration test fixes: removed caching of pip from .travis.yml (#431)
update pip and setuptools when running install.sh found in .travis

use xenial

removed trailing dash

only run webrecorder-tests using chrome and firefox

only run webrecorder-tests using pywbtest and chrometest marker expression
2019-01-30 16:36:45 -05:00

11 lines
201 B
Bash
Executable File

#!/bin/bash
set -e
if [ "$WR_TEST" = "no" ]; then
python setup.py test
cd karma-tests && make test && cd ..
else
cd webrecorder-tests
INTRAVIS=1 pytest -m "pywbtest and chrometest"
fi