1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-14 15:53:28 +01:00
pywb/.travis/test.sh
Ilya Kreymer d2467d5fad wombat + tests
- add build-wombat.sh for building wombat
- fix tests (no more karma tests, now in wombat)
- update to latest wombat
2019-07-02 19:25:13 -07:00

10 lines
160 B
Bash
Executable File

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