From d76e219e7be81bed565bcba5d846289813f92a00 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Tue, 21 Feb 2017 16:30:29 -0800 Subject: [PATCH] make run-tests.sh work with the docker image that gets pulled in now, which doesn't have a 'python3.4' command --- setup.py | 2 +- tests/run-tests.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 62a5d10..bcce234 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/tests/run-tests.sh b/tests/run-tests.sh index fbb13df..9a99071 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -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 \