Fix a typo in system test runner

- stacklight_tests -> murano_plugin_tests

Change-Id: I2851871f93a0039adda00b5c7a17bb20e6dc8c78
This commit is contained in:
Victor Ryzhenkin 2016-07-14 15:14:12 +03:00
parent dc54c09d55
commit 9a5e2eb194
1 changed files with 2 additions and 2 deletions

View File

@ -430,11 +430,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 stacklight_tests/run_tests.py -q --nologcapture --with-xunit ${OPTS}
echo python murano_plugin_tests/run_tests.py -q --nologcapture --with-xunit ${OPTS}
else
export PYTHONPATH="${PYTHONPATH:+${PYTHONPATH}:}${WORKSPACE}"
echo ${PYTHONPATH}
python stacklight_tests/run_tests.py -q --nologcapture --with-xunit ${OPTS}
python murano_plugin_tests/run_tests.py -q --nologcapture --with-xunit ${OPTS}
fi
ec=$?