diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f9c9efcdaa95b3dd9c2f0ba823c25780e086b3f8..5248b16cc116feb2aa3f65eeff0d168ce1d2a10b 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