summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorkali <kali@leap.se>2012-09-06 06:14:07 +0900
committerkali <kali@leap.se>2012-09-06 06:14:07 +0900
commit0932d79369fe381c20f4b8f0260a1cd850d979a7 (patch)
tree5fc8f531f54d0f4fe83a2298827e74a03bc296f6 /run_tests.sh
parentbb5d092b6f57321a12f0d7575e221b0cc68f063d (diff)
parent212f9588e458d5c864134caa8dafbef164631671 (diff)
Merge branch 'feature/fix-setup-deps' into develop
Closes #405 Several fixes on setup.py: It now reads requirements from pkg/requirements.pip Version is extracted from git describe. Added trove_classifiers metadata. Added bootstrap for setuptools.
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/run_tests.sh b/run_tests.sh
index ebea30b2..96121d3e 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -39,7 +39,7 @@ function process_option {
}
venv=.venv
-with_venv=setup/tools/with_venv.sh
+with_venv=pkg/tools/with_venv.sh
always_venv=0
never_venv=0
force=0
@@ -99,14 +99,14 @@ then
else
if [ $always_venv -eq 1 ]; then
# Automatically install the virtualenv
- python setup/install_venv.py $installvenvopts
+ python pkg/install_venv.py $installvenvopts
wrapper="${with_venv}"
else
echo -e "No virtual environment found...create one? (Y/n) \c"
read use_ve
if [ "x$use_ve" = "xY" -o "x$use_ve" = "x" -o "x$use_ve" = "xy" ]; then
# Install the virtualenv and run the test suite in it
- python setup/install_venv.py $installvenvopts
+ python pkg/install_venv.py $installvenvopts
wrapper=${with_venv}
fi
fi