summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorJaymala Sinha <jsinha@chef.io>2019-09-27 15:03:34 -0400
committerJaymala Sinha <jsinha@chef.io>2019-09-27 15:03:34 -0400
commit9c3fe7b43ac95e0392bf62ef5930b117c7903ae1 (patch)
tree9f87f887e6dfbcc8da5180ce972c596131989ddc /spec/spec_helper.rb
parent2a98c165d1bd7dd5959c6e7b8d7d4699f6cb97c9 (diff)
downloadchef-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.rb2
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?