Create a runner for the feature tests.

This commit is contained in:
Dave Page
2017-06-20 11:51:22 +01:00
parent 34518d328e
commit bd917f2348
2 changed files with 37 additions and 11 deletions
-11
View File
@@ -3,13 +3,6 @@
echo "EXECUTING: Python tests"
echo
echo "Starting virtual frame buffer..."
echo
Xvfb -ac :99 -screen 0 1280x1024x16 &
FB_PID=$!
export DISPLAY=:99
echo "Creating Python ${PYTHON_VERSION} virtual environment..."
echo
@@ -31,7 +24,3 @@ echo
$WORKSPACE/pgadmin-venv/bin/python $WORKSPACE/web/regression/runtests.py --exclude feature_tests || { echo 'ERROR: Error detected when running the Python tests.' ; exit 1; }
echo "Cleaning up..."
echo
kill $FB_PID