From cc408453c0a623f26ffe94dcee143ba1008be672 Mon Sep 17 00:00:00 2001 From: Jens Rosenboom Date: Wed, 1 Mar 2017 15:27:21 +0000 Subject: [PATCH] Fix tempest invocation The old run_tempest.sh script has been removed from tempest, so we call our own wrapper that is created in the openstack-integration-test cookbook instead. Change-Id: I4a9d437b8227bda7fbdd0f3d41b4f7ca4c695400 Depends-On: If64fd079a8955d417daa76d431959f0335280467 Depends-On: If4a86dfd16c9abbdb0957520d30b7e5c1435d4c1 (cherry picked from commit a3b1f57fa5daaccb516727517cdf5fe004ecf62a) --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 81950f7..7759c6a 100644 --- a/Rakefile +++ b/Rakefile @@ -238,6 +238,6 @@ task :integration => [:create_key, :berks_vendor] do end # Run the tempest formal tests, setup with the openstack-integration-test cookbook Dir.chdir('/opt/tempest') do - sh %(sudo -H ./run_tempest.sh --smoke --serial) + sh %(sudo -H /opt/tempest-venv/tempest.sh) end end