aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2020-01-19 15:56:17 +0100
committerGitHub <noreply@github.com>2020-01-19 15:56:17 +0100
commitde5425c4fdb503c365d528ce370ed32c5f8763f9 (patch)
treefe87c7708948084067245835d9c04a02b5bd3562
parent2887ecd300b555301ababd56cebd278e0fcd8283 (diff)
parent4c46c0d7fde4225ab6c9d3469b2e073e022d92b5 (diff)
Merge pull request #11845 from vespa-engine/jvenstad/run-only-setup-during-staging-setup
Do not run staging tests during setup
-rw-r--r--vespa-testrunner-components/src/main/java/com/yahoo/vespa/hosted/testrunner/TestProfile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespa-testrunner-components/src/main/java/com/yahoo/vespa/hosted/testrunner/TestProfile.java b/vespa-testrunner-components/src/main/java/com/yahoo/vespa/hosted/testrunner/TestProfile.java
index c62511dc258..d568b549f9b 100644
--- a/vespa-testrunner-components/src/main/java/com/yahoo/vespa/hosted/testrunner/TestProfile.java
+++ b/vespa-testrunner-components/src/main/java/com/yahoo/vespa/hosted/testrunner/TestProfile.java
@@ -8,7 +8,7 @@ package com.yahoo.vespa.hosted.testrunner;
enum TestProfile {
SYSTEM_TEST("system, com.yahoo.vespa.tenant.systemtest.base.SystemTest", true),
- STAGING_SETUP_TEST("staging-setup, com.yahoo.vespa.tenant.systemtest.base.StagingTest", false),
+ STAGING_SETUP_TEST("staging-setup", false),
STAGING_TEST("staging, com.yahoo.vespa.tenant.systemtest.base.StagingTest", true),
PRODUCTION_TEST("production, com.yahoo.vespa.tenant.systemtest.base.ProductionTest", false);