diff options
author | highstreetherbert <herbert.eiselt@highstreet-technologies.com> | 2023-04-13 12:02:00 +0200 |
---|---|---|
committer | demskeq8 <alexander.dehn@highstreet-technologies.com> | 2023-04-19 17:28:32 +0200 |
commit | a4a4c3111e505ea6026542737125497a69521fa8 (patch) | |
tree | 0a6257f538613bf79b6e0f13cdb0baf2d8f307ee /csit/run-csit.sh | |
parent | 569899f937fbd902695c09009e928fb171f8da49 (diff) |
enable sdnr csit
enable sdnr testplan
Issue-ID: SDNC-1794
Signed-off-by: highstreetherbert <herbert.eiselt@highstreet-technologies.com>
Change-Id: I8ce091fa6305c8b856d26ba86abc6a3db67dccc3
Signed-off-by: demskeq8 <alexander.dehn@highstreet-technologies.com>
Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Former-commit-id: 544da6ee98136c6949fc1a600e687f047d5a8ffa
Diffstat (limited to 'csit/run-csit.sh')
-rwxr-xr-x | csit/run-csit.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csit/run-csit.sh b/csit/run-csit.sh index 04d744bb..31b8e29f 100755 --- a/csit/run-csit.sh +++ b/csit/run-csit.sh @@ -210,7 +210,7 @@ if [[ -z $SDNC_RELEASE_WITHOUT_ROBOT ]] ; then python -m robot.run -N ${TESTPLAN} -v WORKSPACE:/tmp ${ROBOT_VARIABLES} ${TESTOPTIONS} ${SUITES} else echo "*** TRACE **** python is running in a container" - docker run --net="host" \ + docker run --rm --net="host" \ -v ${WORKSPACE}:${WORKSPACE} -v ${WORKDIR}:${WORKDIR} $ROBOT_IMAGE \ python3 -B -m robot.run -N ${TESTPLAN} -v WORKSPACE:/tmp --outputdir ${WORKDIR} ${ROBOT_VARIABLES} ${TESTOPTIONS} ${SUITES} fi @@ -222,7 +222,7 @@ if [[ -z $SDNC_RELEASE_WITHOUT_ROBOT ]] ; then else echo "[WARNING] SDNC_RELEASE_WITHOUT_ROBOT is TRUE " echo "[WARNING] Dummy Robot test suite is executed, job remains ok. " - docker run --net="host" \ + docker run --rm --net="host" \ -v ${WORKSPACE}:${WORKSPACE} -v ${WORKDIR}:${WORKDIR} $ROBOT_IMAGE \ python3 -B -m robot.run -N ${TESTPLAN} -v WORKSPACE:/tmp --outputdir ${WORKDIR} ${ROBOT_VARIABLES} ${TESTOPTIONS} ${WORKSPACE}/tests/sdnr/debug/10_dummy.robot true |