diff options
author | Jaymala Sinha <jsinha@chef.io> | 2019-09-27 15:03:34 -0400 |
---|---|---|
committer | Jaymala Sinha <jsinha@chef.io> | 2019-09-27 15:03:34 -0400 |
commit | 9c3fe7b43ac95e0392bf62ef5930b117c7903ae1 (patch) | |
tree | 9f87f887e6dfbcc8da5180ce972c596131989ddc /spec/spec_helper.rb | |
parent | 2a98c165d1bd7dd5959c6e7b8d7d4699f6cb97c9 (diff) | |
download | chef-9c3fe7b43ac95e0392bf62ef5930b117c7903ae1.tar.gz |
Fix Windows Integration and Functional tests for BK
* Use default windows 2019 image
* Skip 8dot3name tests as default disabled on 2019
* Use windows privileged executor for functional tests
* Use windows docker image for chocolatey tests
Signed-off-by: Jaymala Sinha <jsinha@chef.io>
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index e19a06f3d7..27cf301d67 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -141,6 +141,8 @@ RSpec.configure do |config| config.filter_run_excluding skip_appveyor: true if ENV["APPVEYOR"] config.filter_run_excluding appveyor_only: true unless ENV["APPVEYOR"] + config.filter_run_excluding skip_buildkite: true if ENV["BUILDKITE"] + config.filter_run_excluding windows_only: true unless windows? config.filter_run_excluding not_supported_on_windows: true if windows? config.filter_run_excluding not_supported_on_macos: true if mac_osx? |