From e1474133b638e1f442b812ee794a79b6038f6a69 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Fri, 2 Oct 2015 16:55:11 +0000 Subject: [PATCH] does it still hang if we don't really run anything inside docker? --- tests/run-tests.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/run-tests.sh b/tests/run-tests.sh index ffc3fdd..d458045 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -9,11 +9,12 @@ user=$(id -un) for python in python2.7 python3.4 do - docker run --net=host --rm --volume="$script_dir/..:/rethinkstuff" internetarchive/rethinkdb /sbin/my_init -- \ - bash -x -c "cd /rethinkstuff \ - && virtualenv -p $python /tmp/venv \ - && source /tmp/venv/bin/activate \ - && pip install pytest . \ - && py.test -v -s tests" + docker run --rm --volume="$script_dir/..:/rethinkstuff" internetarchive/rethinkdb /sbin/my_init -- \ + true + # bash -x -c "cd /rethinkstuff \ + # && virtualenv -p $python /tmp/venv \ + # && source /tmp/venv/bin/activate \ + # && pip install pytest . \ + # && py.test -v -s tests" done