diff options
author | Tim Smith <tsmith84@gmail.com> | 2019-07-09 17:07:45 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2019-07-09 17:07:45 -0700 |
commit | 9685e6ec1797e9e283597fc5634f4663fdf1e698 (patch) | |
tree | 094f30ddeb4d1bda0ec4cc24b5e6d693ee1413da /spec/functional | |
parent | 2d614c6959cc4eb5f01c89adf5bafe2666a2a180 (diff) | |
download | chef-9685e6ec1797e9e283597fc5634f4663fdf1e698.tar.gz |
Remove rspec config for Travistravis
We're running this all in buildkite w/o issues.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/functional')
-rw-r--r-- | spec/functional/resource/ifconfig_spec.rb | 4 | ||||
-rw-r--r-- | spec/functional/resource/mount_spec.rb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/spec/functional/resource/ifconfig_spec.rb b/spec/functional/resource/ifconfig_spec.rb index 10ebcaf8b6..3ea7054a9f 100644 --- a/spec/functional/resource/ifconfig_spec.rb +++ b/spec/functional/resource/ifconfig_spec.rb @@ -1,6 +1,6 @@ # # Author:: Kaustubh Deorukhkar (<kaustubh@clogeny.com>) -# Copyright:: Copyright 2013-2016, Chef Software Inc. +# Copyright:: Copyright 2013-2018, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -23,7 +23,7 @@ require "chef/mixin/shell_out" # run this test only for following platforms. include_flag = !(%w{amazon debian aix}.include?(ohai[:platform_family]) || (ohai[:platform_family] == "rhel" && ohai[:platform_version].to_i < 7)) -describe Chef::Resource::Ifconfig, :requires_root, :skip_travis, external: include_flag do +describe Chef::Resource::Ifconfig, :requires_root, external: include_flag do # This test does not work in travis because there is no eth0 include Chef::Mixin::ShellOut diff --git a/spec/functional/resource/mount_spec.rb b/spec/functional/resource/mount_spec.rb index 6dd9f54412..be05d5d443 100644 --- a/spec/functional/resource/mount_spec.rb +++ b/spec/functional/resource/mount_spec.rb @@ -1,6 +1,6 @@ # # Author:: Kaustubh Deorukhkar (<kaustubh@clogeny.com>) -# Copyright:: Copyright 2013-2018, Chef Software Inc. +# Copyright:: Copyright 2013-2019, Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -24,7 +24,7 @@ require "tmpdir" # run this test only for following platforms. include_flag = !(%w{debian rhel amazon aix solaris2}.include?(ohai[:platform_family])) -describe Chef::Resource::Mount, :requires_root, :skip_travis, external: include_flag do +describe Chef::Resource::Mount, :requires_root, external: include_flag do # Disabled in travis because it refuses to let us mount a ramdisk. /dev/ramX does not # exist even after loading the kernel module |