45afc91aaf
This change adds functional tests to the sahara role. It install tempest and and then runs the data processing scenario tests. Change-Id: Ie6e606fb2e624fdad57cd06b8ea8a8d8773bf243 Depends-On: I8abc5c567e0d3e5829b9f7da8be5b0d0fc065ea7
14 lines
279 B
Ruby
14 lines
279 B
Ruby
Vagrant.configure(2) do |config|
|
|
config.vm.box = "ubuntu/trusty64"
|
|
config.vm.provider "virtualbox" do |v|
|
|
v.memory = 4096
|
|
v.cpus = 2
|
|
end
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
sudo su -
|
|
cd /vagrant
|
|
apt-get update
|
|
./run_tests.sh
|
|
SHELL
|
|
end
|