summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2022-02-16 08:18:06 +0100
committerJon Marius Venstad <venstad@gmail.com>2022-02-16 13:43:34 +0100
commite8446e07abeb197a8a3b165b0d68bcda36723f1c (patch)
tree8a0e48b193dedb97f394b0c4278d5fd4ae5ada97 /controller-api
parent59e6bcf9d3a53679fd76dd21353eee9b908ac1f3 (diff)
Make it possible to reset runs—they count as failed, so do clean-up, then reset
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java
index fe1fcece6b1..f6270c78069 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java
@@ -51,6 +51,9 @@ public interface TesterCloud {
/** Tests failed. */
FAILURE,
+ /** Tests were inconclusive, and need to run again later. */
+ INCONCLUSIVE,
+
/** The tester encountered an exception. */
ERROR,