diff options
author | Tim Smith <tsmith@chef.io> | 2019-01-22 15:27:17 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2019-01-22 15:27:17 -0800 |
commit | 696828458c2bfe9f69796b044116e7a36ca75d81 (patch) | |
tree | 23ec1ad9bb4f2746534952f6adc1167976c3f3c0 /.travis.yml | |
parent | d5286ce763953b986b72b368d86e5fe5aa9d9106 (diff) | |
download | chef-696828458c2bfe9f69796b044116e7a36ca75d81.tar.gz |
Fix functional test failures on Ruby 2.6
We forgot to copy this bit over for 2.6
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 0bb296788a..70e02c3613 100644 --- a/.travis.yml +++ b/.travis.yml @@ -57,7 +57,7 @@ matrix: FUNCTIONAL_SPECS_26: 1 rvm: 2.6 sudo: true - script: sudo -E $(which bundle) exec rake spec:functional; + script: sudo rm -f /etc/apt/apt.conf.d/99-travis-apt-proxy; sudo -E $(which bundle) exec rake spec:functional; bundler_args: --without ci docgen guard integration maintenance omnibus_package --frozen - env: UNIT_SPECS_25: 1 |