@@ -364,28 +364,28 @@ endif
364364ifndef SCENARIO
365365 $(error SCENARIO is not set)
366366endif
367- @cd integrationservertest && go test -run=TestUpgrade.*/.*/$(SCENARIO) -v -timeout=60m -cleanup-on-failure=false -target="pro" -upgrade-path="$(UPGRADE_PATH)" ./
367+ @cd integrationservertest && go test -run=TestUpgrade.*/.*/$(SCENARIO) -v -timeout=60m -cleanup-on-failure=true -target="pro" -upgrade-path="$(UPGRADE_PATH)" ./
368368
369369# Run integration server upgrade test on all scenarios
370370.PHONY : integration-server-upgrade-test-all
371371integration-server-upgrade-test-all :
372372ifndef UPGRADE_PATH
373373 $(error UPGRADE_PATH is not set)
374374endif
375- @cd integrationservertest && go test -run=TestUpgrade_UpgradePath -v -timeout=60m -cleanup-on-failure=false -target="pro" -upgrade-path="$(UPGRADE_PATH)" ./
375+ @cd integrationservertest && go test -run=TestUpgrade_UpgradePath -v -timeout=60m -cleanup-on-failure=true -target="pro" -upgrade-path="$(UPGRADE_PATH)" ./
376376
377377# Run integration server standalone test on one scenario - Managed7 / Managed8 / Managed9
378378.PHONY : integration-server-standalone-test
379379integration-server-standalone-test :
380380ifndef SCENARIO
381381 $(error SCENARIO is not set)
382382endif
383- @cd integrationservertest && go test -run=TestStandaloneManaged.*/$(SCENARIO) -v -timeout=60m -cleanup-on-failure=false -target="pro" ./
383+ @cd integrationservertest && go test -run=TestStandaloneManaged.*/$(SCENARIO) -v -timeout=60m -cleanup-on-failure=true -target="pro" ./
384384
385385# Run integration server standalone test on all scenarios
386386.PHONY : integration-server-standalone-test-all
387387integration-server-standalone-test-all :
388- @cd integrationservertest && go test -run=TestStandaloneManaged -v -timeout=60m -cleanup-on-failure=false -target=" pro" ./
388+ @cd integrationservertest && go test -run=TestStandaloneManaged -v -timeout=60m -cleanup-on-failure=true -target=" pro" ./
389389
390390# #############################################################################
391391# Generating and linting API documentation
0 commit comments