diff options
author | Scott Hain <shain@getchef.com> | 2014-10-29 11:37:12 -0700 |
---|---|---|
committer | Scott Hain <shain@getchef.com> | 2014-10-29 11:42:59 -0700 |
commit | d6d6f7e318d047663ca06f3e479b1d7658138639 (patch) | |
tree | 4b35270117457b52ed84d5cfd01d64d1d87ff571 | |
parent | 5e63e3b321b88067dffd16f53d251055f2f40a16 (diff) | |
download | chef-d6d6f7e318d047663ca06f3e479b1d7658138639.tar.gz |
Merge pull request #2320 from ClogenyTechnologies/kd-aix-fixes-wrktn
Disable workstation tests for aix.
-rw-r--r-- | spec/spec_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index b1d7cdbd64..cc5ba8c3ac 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -98,7 +98,7 @@ RSpec.configure do |config| config.filter_run_excluding :external => true # Only run these tests on platforms that are also chef workstations - config.filter_run_excluding :workstation if solaris? + config.filter_run_excluding :workstation if solaris? or aix? # Tests that randomly fail, but may have value. config.filter_run_excluding :volatile => true |