Merge pull request #12980 from dcermak/fix-ci

Fix CI
This commit is contained in:
Chris Roberts 2022-11-03 11:49:43 -07:00 committed by GitHub
commit 9b8e0435ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -41,5 +41,7 @@ jobs:
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: install dependencies
run: sudo apt -y install libarchive-tools
- name: Run Tests
run: bundle exec rake test:unit

View File

@ -3,7 +3,7 @@ require File.expand_path("../../base", __FILE__)
require "pathname"
require 'tempfile'
describe Vagrant::BoxCollection, :skip_windows do
describe Vagrant::BoxCollection, :skip_windows, :bsdtar do
include_context "unit"
let(:box_class) { Vagrant::Box }