make run-tests.sh work with the docker image that gets pulled in now, which doesn't have a 'python3.4' command

This commit is contained in:
Noah Levitt 2017-02-21 16:30:29 -08:00
parent 6d667c77b5
commit d76e219e7b
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import codecs
setuptools.setup(
name='rethinkstuff',
version='0.2.0.dev58',
version='0.2.0.dev59',
packages=['rethinkstuff'],
classifiers=[
'Programming Language :: Python :: 2.7',

View File

@ -6,7 +6,7 @@ script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
docker build -t internetarchive/rethinkdb $script_dir
for python in python2.7 python3.4
for python in python2.7 python3
do
docker run --rm -it --volume="$script_dir/..:/rethinkstuff" internetarchive/rethinkdb /sbin/my_init -- \
bash -x -c "cd /tmp && git clone /rethinkstuff \