aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit
diff options
context:
space:
mode:
authorMatej Klotton <matej.klotton@pantheon.tech>2018-09-12 09:38:59 +0200
committerGary Wu <gary.i.wu@huawei.com>2018-09-27 09:58:22 -0700
commitb20b090f7c4fbacbfc763200e3e98a5bd97507e2 (patch)
tree4722edef82c652ce3957325c8cc9e73f8d70ae0d /test/csit
parentf2f9278a5839949dee07c0174ab433a83e8e4dbf (diff)
Force to run pybot from venv
Change-Id: I2a53212926ea018b65c2eae4eef04d9083226294 Issue-ID: INT-653 Signed-off-by: Matej Klotton <matej.klotton@pantheon.tech> Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'test/csit')
-rw-r--r--test/csit/plans/integration/functionality1/testplan.txt1
-rwxr-xr-xtest/csit/run-csit.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/test/csit/plans/integration/functionality1/testplan.txt b/test/csit/plans/integration/functionality1/testplan.txt
index 7a29ca53d..9221b4751 100644
--- a/test/csit/plans/integration/functionality1/testplan.txt
+++ b/test/csit/plans/integration/functionality1/testplan.txt
@@ -1,4 +1,5 @@
# Test suites are relative paths under [integration.git]/test/csit/tests/.
# Place the suites in run order.
+# Temporary change to trigger verify job.
integration/suite1
integration/suite2
diff --git a/test/csit/run-csit.sh b/test/csit/run-csit.sh
index a048a0d69..40cd9ee6d 100755
--- a/test/csit/run-csit.sh
+++ b/test/csit/run-csit.sh
@@ -152,7 +152,7 @@ SUITES=$( xargs -a testplan.txt )
echo ROBOT_VARIABLES=${ROBOT_VARIABLES}
echo "Starting Robot test suites ${SUITES} ..."
set +e
-pybot -N ${TESTPLAN} -v WORKSPACE:/tmp ${ROBOT_VARIABLES} ${TESTOPTIONS} ${SUITES}
+python -m robot.run -N ${TESTPLAN} -v WORKSPACE:/tmp ${ROBOT_VARIABLES} ${TESTOPTIONS} ${SUITES}
RESULT=$?
set -e
echo "RESULT: " $RESULT