mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 08:04:49 +01:00
16 lines
352 B
Bash
16 lines
352 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
python setup.py -q install
|
||
|
pip install -r extra_requirements.txt
|
||
|
pip install coverage pytest-cov coveralls
|
||
|
pip install codecov
|
||
|
npm install
|
||
|
|
||
|
if [ "$WR_TEST" = "yes" ]; then
|
||
|
git clone https://github.com/webrecorder/webrecorder-tests.git
|
||
|
cd webrecorder-tests
|
||
|
pip install --upgrade -r requirements.txt
|
||
|
./bootstrap.sh
|
||
|
fi
|