mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 00:03:28 +01:00
11 lines
186 B
Bash
11 lines
186 B
Bash
|
#!/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"
|
||
|
fi
|