summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2015-04-24 21:25:21 -0700
committerJeff Quast <contact@jeffquast.com>2015-04-24 21:25:21 -0700
commit71bbdf52ac153c7eaca631637ec96e63de50c2c7 (patch)
treed333225595c31faf46a33346bf3a2784dbcfa85c /tools
parent0744165d925c9720baecabf2d05dae0ddcc8fb0c (diff)
downloadpexpect-bugfix-virtualenv.tar.gz
mkvirtualenv may exit 1 when on success !?bugfix-virtualenv
Diffstat (limited to 'tools')
-rwxr-xr-xtools/teamcity-runtests.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/teamcity-runtests.sh b/tools/teamcity-runtests.sh
index 7025c23..bcb28f7 100755
--- a/tools/teamcity-runtests.sh
+++ b/tools/teamcity-runtests.sh
@@ -27,7 +27,8 @@ fi
. ${venv_wrapper}
rmvirtualenv ${venv} || true
-mkvirtualenv -p `which python${pyversion}` ${venv}
+mkvirtualenv -p `which python${pyversion}` ${venv} || true
+workon ${venv}
# install ptyprocess
cd $here/../../ptyprocess