mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-14 15:53:28 +01:00
- add build-wombat.sh for building wombat - fix tests (no more karma tests, now in wombat) - update to latest wombat
10 lines
160 B
Bash
Executable File
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
|