Change test Makefile args
Change-Id: I10f7c6818c327ec77f0bdb23e046ff17115b63a4
diff --git a/jjb/pipeline/voltha-physical-tests.groovy b/jjb/pipeline/voltha-physical-tests.groovy
index 28bca7d..6df0505 100644
--- a/jjb/pipeline/voltha-physical-tests.groovy
+++ b/jjb/pipeline/voltha-physical-tests.groovy
@@ -257,8 +257,9 @@
stage('Run E2E Tests') {
environment {
- ROBOT_VAR_FILE="${localDeploymentConfigFile}"
+ ROBOT_CONFIG_FILE="${localDeploymentConfigFile}"
ROBOT_MISC_ARGS="--removekeywords wuks -d $WORKSPACE/RobotLogs"
+ ROBOT_FILE="Voltha_PODTests.robot"
}
steps {
sh returnStdout: false, script: """
@@ -266,7 +267,7 @@
git clone -b ${branch} ${cordRepoUrl}/cord-tester
git clone -b ${branch} ${cordRepoUrl}/voltha # VOL-2104 recommends we get rid of this
mkdir -p $WORKSPACE/RobotLogs
- make -C $WORKSPACE/voltha/voltha-system-tests voltha-podtest || true
+ make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
"""
}
}