remove interative mode for running systest 42/6542/1
authorMike Marchetti <mmarchetti@sandvine.com>
Fri, 21 Sep 2018 17:38:25 +0000 (13:38 -0400)
committerMike Marchetti <mmarchetti@sandvine.com>
Fri, 21 Sep 2018 17:38:52 +0000 (13:38 -0400)
Change-Id: Ibc9e42ddab08f2581648364e48ad7c865662690b
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
jenkins/ci-pipelines/ci_stage_3.groovy

index aef40c1..8dd7029 100644 (file)
@@ -51,7 +51,7 @@ def uninstall_osm(stackName) {
 
 def run_systest(stackName,tagName,testName) {
     tempdir = sh(returnStdout: true, script: "mktemp -d").trim()
-    sh "docker run -ti --network net${stackName} -v ${tempdir}:/usr/share/osm-devops/systest/reports osm/osmclient:${tagName} make -C /usr/share/osm-devops/systest ${testName}"
+    sh "docker run --network net${stackName} -v ${tempdir}:/usr/share/osm-devops/systest/reports osm/osmclient:${tagName} make -C /usr/share/osm-devops/systest ${testName}"
     cp "${tempdir}/*.xml ."
     junit  '*.xml'
 }