summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan McLellan <btm@opscode.com>2012-11-28 10:15:48 -0800
committerBryan McLellan <btm@opscode.com>2012-11-28 10:15:48 -0800
commit19d5a2ffd6d42a0f226555ea2cdeae79c6b42c0c (patch)
treea69d10fe1e0324b77ef5951ea401f3b7d15ebf02
parent49e7257d382c2fcb1f8e16c8939c40f5aa529603 (diff)
downloadchef-19d5a2ffd6d42a0f226555ea2cdeae79c6b42c0c.tar.gz
move test.xml ci output file back up to workspace directory
-rw-r--r--ci/jenkins_run_tests.bat1
-rwxr-xr-xci/jenkins_run_tests.sh1
2 files changed, 2 insertions, 0 deletions
diff --git a/ci/jenkins_run_tests.bat b/ci/jenkins_run_tests.bat
index 9bcec5c445..5cb2923a4a 100644
--- a/ci/jenkins_run_tests.bat
+++ b/ci/jenkins_run_tests.bat
@@ -6,3 +6,4 @@ cd chef
ruby -v
call bundle install --binstubs --path vendor/bundle || ( call rm Gemfile.lock && call bundle install --binstubs --path vendor/bundle )
ruby bin\rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec/functional spec/unit
+move test.xml ..
diff --git a/ci/jenkins_run_tests.sh b/ci/jenkins_run_tests.sh
index 5e5078042d..8139d24d8c 100755
--- a/ci/jenkins_run_tests.sh
+++ b/ci/jenkins_run_tests.sh
@@ -10,3 +10,4 @@ ruby -v;
# This should take care of Gemfile changes that result in "bad" bundles without forcing us to rebundle every time
bundle install --binstubs --path vendor/bundle || ( rm Gemfile.lock && bundle install --binstubs --path vendor/bundle )
bin/rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec;
+mv test.xml ..