diff --git a/Vagrantfile b/Vagrantfile index e6e91c4c..20ead435 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,6 +4,7 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/bionic64" config.vm.network "private_network", ip: "172.30.1.5" config.ssh.insert_key = false + ansible.inventory_path = "tests/inventories/integration_testing/inventory" config.vm.provision "ansible_local" do |ansible| ansible.compatibility_mode = "2.0" diff --git a/tests/test-vagrant.sh b/tests/test-vagrant.sh index 29f02d2c..7d782460 100755 --- a/tests/test-vagrant.sh +++ b/tests/test-vagrant.sh @@ -33,8 +33,6 @@ test_needs() { testing_init() { log "Checking Vagrant installation" test_needs vagrant - log "Copy all.yml to test.yml" - cp -f $PLAYBOOK_DIR/group_vars/all.yml $PLAYBOOK_DIR/tests/test.yml } header