summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorThom May <thom@chef.io>2018-05-02 11:04:12 +0100
committerThom May <thom@chef.io>2018-05-02 11:04:12 +0100
commit88adc980804094c054ae7157a2052a6c775c3e42 (patch)
treea6203aabad8228f408e99cc68d3e1b9f7f2f7c7b /spec/spec_helper.rb
parent4a053a756e8ba4ab9d1fcad384396f465eb1cee7 (diff)
downloadchef-88adc980804094c054ae7157a2052a6c775c3e42.tar.gz
Ensure we don't run tests on unsupported platformstm/fix_unix_tests
Our more esoteric unices need some more careful hand holding Signed-off-by: Thom May <thom@chef.io>
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index c57c83e100..b4d337eecd 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -146,6 +146,7 @@ RSpec.configure do |config|
config.filter_run_excluding :not_supported_on_mac_osx_106 => true if mac_osx_106?
config.filter_run_excluding :not_supported_on_mac_osx => true if mac_osx?
config.filter_run_excluding :mac_osx_only => true if !mac_osx?
+ config.filter_run_excluding :not_supported_on_aix => true if aix?
config.filter_run_excluding :not_supported_on_solaris => true if solaris?
config.filter_run_excluding :not_supported_on_gce => true if gce?
config.filter_run_excluding :not_supported_on_nano => true if windows_nano_server?