mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
24 lines
820 B
Bash
Executable File
24 lines
820 B
Bash
Executable File
#!/bin/bash
|
|
|
|
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
docker build -t internetarchive/rethinkdb $script_dir || exit 1
|
|
|
|
uid=$(id -u)
|
|
user=$(id -un)
|
|
|
|
for python in python2.7 python3.4
|
|
do
|
|
docker run --rm -i -t --volume="$script_dir/..:/warcprox" internetarchive/rethinkdb /sbin/my_init -- \
|
|
bash -x -c " adduser --gecos=$user --disabled-password --quiet --uid=$uid $user \
|
|
&& sudo -u $user bash -x -c 'cd /warcprox \
|
|
&& devpi use --set-cfg http://crawl342.us.archive.org:9000/nlevitt/dev \
|
|
&& virtualenv -p $python /tmp/venv \
|
|
&& source /tmp/venv/bin/activate \
|
|
&& pip --log-file /tmp/pip.log install . pytest requests \
|
|
&& py.test tests \
|
|
&& py.test --rethinkdb-servers=localhost tests \
|
|
&& py.test --rethinkdb-servers=localhost --rethinkdb-big-table tests'"
|
|
done
|
|
|