diff options
author | Kali Kaneko <kali@leap.se> | 2013-12-05 10:00:27 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2013-12-05 10:00:27 -0400 |
commit | d7a7c886b06acbe3ff5e5abb3911fd4905432ca6 (patch) | |
tree | a4a31c45f0d51b5f5747f986350132f65c96879b | |
parent | 4945a2233363b496640e71a5f7bc0fd37d185592 (diff) |
change path to working directory, since we reuse venv across projects
-rwxr-xr-x | pkg/tools/with_venvwrapper.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/tools/with_venvwrapper.sh b/pkg/tools/with_venvwrapper.sh index 988d2822..693c0ac9 100755 --- a/pkg/tools/with_venvwrapper.sh +++ b/pkg/tools/with_venvwrapper.sh @@ -4,9 +4,13 @@ #Example: #with_virtualenvwrapper.sh leap-bitmask ./run_tests.sh +wd=`pwd` alias pyver='python -c "import $1;print $1.__path__[0]; print $1.__version__;"' source `which virtualenvwrapper.sh` +echo "Activating virtualenv " $1 +echo "------------------------------------" workon $1 +cd $wd echo "running version: " `pyver leap.bitmask` $2 $3 $4 $5 |