summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ci/jenkins_run_tests.bat3
-rwxr-xr-xci/jenkins_run_tests.sh3
2 files changed, 0 insertions, 6 deletions
diff --git a/ci/jenkins_run_tests.bat b/ci/jenkins_run_tests.bat
index b5c35a34cd..b5076949f3 100644
--- a/ci/jenkins_run_tests.bat
+++ b/ci/jenkins_run_tests.bat
@@ -5,8 +5,5 @@ call bundle install --binstubs --path vendor/bundle || ( call rm Gemfile.lock &&
ruby bin\rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec/functional spec/unit spec/stress
set RSPEC_ERRORLVL=%ERRORLEVEL%
-REM place rspec output back in jenkins working directory
-move test.xml ..
-
REM Return the error level from rspec
exit /B %RSPEC_ERRORLVL%
diff --git a/ci/jenkins_run_tests.sh b/ci/jenkins_run_tests.sh
index be9c6a882e..90a1fec0c8 100755
--- a/ci/jenkins_run_tests.sh
+++ b/ci/jenkins_run_tests.sh
@@ -9,8 +9,5 @@ bundle install --path vendor/bundle || ( rm Gemfile.lock && bundle install --pat
bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec;
RSPEC_RETURNCODE=$?
-# move the rspec results back into the jenkins working directory
-mv test.xml ..
-
# exit with the result of running rspec
exit $RSPEC_RETURNCODE