diff options
author | Bryan McLellan <btm@loftninjas.org> | 2016-02-05 09:54:31 -0500 |
---|---|---|
committer | Bryan McLellan <btm@loftninjas.org> | 2016-02-05 09:54:31 -0500 |
commit | dc7a6d3efda0fa8f77b9b43e9f2efd828bd3edae (patch) | |
tree | efb2bb07012c17c9eb34377f43097871345f8d50 /ci/verify-chef.bat | |
parent | 328b16aa75ce8dc49cb8f7b18900d3c68148b789 (diff) | |
parent | 2dbed77bc748627c21be1025be6ba58057e28579 (diff) | |
download | chef-dc7a6d3efda0fa8f77b9b43e9f2efd828bd3edae.tar.gz |
Merge pull request #4530 from chef/ksubrama/ci
Remove obsolete reference to chef-13. Add VERSION to gemspec.
Diffstat (limited to 'ci/verify-chef.bat')
-rwxr-xr-x | ci/verify-chef.bat | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/ci/verify-chef.bat b/ci/verify-chef.bat index 2c16eb83f6..c8f9d3573c 100755 --- a/ci/verify-chef.bat +++ b/ci/verify-chef.bat @@ -47,13 +47,7 @@ IF NOT EXIST "Gemfile.lock" ( GOTO :error ) -IF "%PIPELINE_NAME%" == "chef-13" ( - REM ; Running unit and functional tests - call bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/unit spec/functional -) ELSE ( - REM ; Running unit tests - IF "%PIPELINE_NAME%" == "chef-fips" ( - set CHEF_FIPS=1 - ) - call bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/unit spec/functional +IF "%PIPELINE_NAME%" == "chef-fips" ( + set CHEF_FIPS=1 ) +call bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/unit spec/functional |