mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 00:03:28 +01:00
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
17 lines
389 B
Bash
Executable File
17 lines
389 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
pip install --upgrade pip setuptools
|
|
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
|