Files
49e5701d23f4a474dedfb8fbca3c1620b4d96699
jaypipes@gmail.com
8c7558ed5a
Changes the run_tests.sh and /tools/install_venv.py scripts to be more user-friendly and not depend on PIP while not in the virtual environment. Running run_tests.sh should not just work out of the box on all systems supporting easy_install...
13 lines
254 B
Bash
Executable File
13 lines
254 B
Bash
Executable File
#!/bin/bash
venv=.nova-venv
with_venv=tools/with_venv.sh
if [ -e ${venv} ]; then
${with_venv} python run_tests.py $@
else
echo "No virtual environment found...creating one"
python tools/install_venv.py
${with_venv} python run_tests.py $@
fi