diff options
author | Bryan McLellan <btm@opscode.com> | 2012-11-28 10:15:48 -0800 |
---|---|---|
committer | Bryan McLellan <btm@opscode.com> | 2012-11-28 10:15:48 -0800 |
commit | 19d5a2ffd6d42a0f226555ea2cdeae79c6b42c0c (patch) | |
tree | a69d10fe1e0324b77ef5951ea401f3b7d15ebf02 /ci | |
parent | 49e7257d382c2fcb1f8e16c8939c40f5aa529603 (diff) | |
download | chef-19d5a2ffd6d42a0f226555ea2cdeae79c6b42c0c.tar.gz |
move test.xml ci output file back up to workspace directory
Diffstat (limited to 'ci')
-rw-r--r-- | ci/jenkins_run_tests.bat | 1 | ||||
-rwxr-xr-x | ci/jenkins_run_tests.sh | 1 |
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 .. |