aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-testrunner-components
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2020-01-19 15:51:18 +0100
committerJon Marius Venstad <venstad@gmail.com>2020-01-19 15:51:18 +0100
commit4c46c0d7fde4225ab6c9d3469b2e073e022d92b5 (patch)
treefe87c7708948084067245835d9c04a02b5bd3562 /vespa-testrunner-components
parent2887ecd300b555301ababd56cebd278e0fcd8283 (diff)
Do not run staging tests during setup
Diffstat (limited to 'vespa-testrunner-components')
-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);