Sha256: f44c9e7067956ec5da25523a0fdc11abb67a339293e3dfb85cad8cf27c926379
Contents?: true
Size: 796 Bytes
Versions: 4
Compression:
Stored size: 796 Bytes
Contents
require 'pathname' require 'vagrant-spec/acceptance' Vagrant::Spec::Acceptance.configure do |c| acceptance_dir = Pathname.new File.expand_path('../acceptance', __FILE__) c.component_paths = [acceptance_dir.to_s] c.skeleton_paths = [(acceptance_dir + 'skeletons').to_s] c.provider 'virtualbox', box: (acceptance_dir + 'artifacts' + 'virtualbox.box').to_s, env_vars: { 'VBOX_USER_HOME' => '{{homedir}}', 'AUTO_NETWORK_TEST_RANGE' => '10.42.1.0/24', } # VMware Fusion disabled by default. Instructions: # https://github.com/adrienthebo/vagrant-auto_network/wiki#vmware-fusion #c.provider 'vmware_fusion', # box: (acceptance_dir + 'artifacts' + 'vmware_fusion.box').to_s, # env_vars: { # 'AUTO_NETWORK_TEST_RANGE' => '10.42.2.0/24', # } end
Version data entries
4 entries across 4 versions & 1 rubygems