summaryrefslogtreecommitdiffstats
path: root/vespa-testrunner-components
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2022-02-28 10:23:28 +0100
committerJon Marius Venstad <venstad@gmail.com>2022-02-28 10:23:28 +0100
commita958c6a1e6a24ae93ee92cfcf3f8c44cb32ebcf1 (patch)
treefa391ae2a48aa7049ecdb3151641fc7cf8a36cd3 /vespa-testrunner-components
parent307283b6e11926860af4c0c71823b9b0f6da6ac3 (diff)
Let fat-jar test runner fail production tests when no tests are present
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 95a2b2723b8..09e2e218497 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
@@ -10,7 +10,7 @@ public enum TestProfile {
SYSTEM_TEST("system, com.yahoo.vespa.tenant.systemtest.base.SystemTest", true),
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);
+ PRODUCTION_TEST("production, com.yahoo.vespa.tenant.systemtest.base.ProductionTest", true);
private final String group;
private final boolean failIfNoTests;