fix incorrectly updated command in cherry-pick: run_system_test is not exists in fuel-qa 8.0

fix incorrectly updated command in cherry-pick: run_system_test is not exists in fuel-qa 8.0
2 strings has been reverted

Change-Id: I59fc3dd98d08f4a47bac545e171fcaf013a119c8
This commit is contained in:
Alexey Stepanov
2016-07-12 14:15:58 +03:00
committed by Dennis Dmitriev
parent bce283dc4a
commit 3d5737eaab

View File

@@ -342,11 +342,11 @@ RunTest() {
# run python test set to create environments, deploy and test product
if [ "${DRY_RUN}" = "yes" ]; then
echo export PYTHONPATH="${PYTHONPATH:+${PYTHONPATH}:}${WORKSPACE}"
echo python run_system_test.py run -q --nologcapture --with-xunit ${OPTS}
echo python fuelweb_test/run_tests.py -q --nologcapture --with-xunit ${OPTS}
else
export PYTHONPATH="${PYTHONPATH:+${PYTHONPATH}:}${WORKSPACE}"
echo ${PYTHONPATH}
python run_system_test.py run -q --nologcapture --with-xunit ${OPTS}
python fuelweb_test/run_tests.py -q --nologcapture --with-xunit ${OPTS}
fi
ec=$?