From 358d5f1e5d3cc35cab3c74fdd3a1d6a3073d64fe Mon Sep 17 00:00:00 2001
From: Michael Boniface <mjb@it-innovation.soton.ac.uk>
Date: Wed, 21 Mar 2018 14:35:59 +0000
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f9c9efc..5248b16 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,26 +3,35 @@ stages:
 
 test_scripts:
   stage: test
+  before_script:
+    - vagrant --fixture=scripts -- destroy --force 
   script: 
     - vagrant --fixture=scripts -- up
     - vagrant --fixture=scripts -- ssh test-runner -- -tt "cd /vagrant && pytest test/scripts/"
-    - vagrant --fixture=scripts -- destroy --force
+  after_script:
+    - vagrant --fixture=scripts -- destroy --force       
   when: manual
   
 test_streaming_sim:
   stage: test
+  before_script:
+    - vagrant --fixture=streaming-sim -- destroy --force    
   script: 
     - vagrant --fixture=streaming-sim -- up
     - vagrant --fixture=streaming-sim -- ssh clmc-service -- -tt "cd /vagrant && pytest test/streaming-sim/"
-    - vagrant --fixture=streaming-sim -- destroy --force    
+  after_script:
+    - vagrant --fixture=streaming-sim -- destroy --force   
   when: manual  
   
 test_telegraf_agents:
   stage: test
+  before_script:
+    - vagrant --fixture=telegraf-agents -- destroy --force      
   script: 
     - vagrant --fixture=telegraf-agents -- up
     - vagrant --fixture=telegraf-agents -- ssh -- clmc-service -tt "cd /vagrant && pytest test/telegraf-agents/"
-    - vagrant --fixture=telegraf-agents -- destroy --force    
+  after_script:
+    - vagrant --fixture=telegraf-agents -- destroy --force       
   when: manual    
 
   
-- 
GitLab