summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipeline_processing/test_cases/dag_test_manual_allow_failure_true.yml
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/ci/pipeline_processing/test_cases/dag_test_manual_allow_failure_true.yml')
-rw-r--r--spec/services/ci/pipeline_processing/test_cases/dag_test_manual_allow_failure_true.yml55
1 files changed, 0 insertions, 55 deletions
diff --git a/spec/services/ci/pipeline_processing/test_cases/dag_test_manual_allow_failure_true.yml b/spec/services/ci/pipeline_processing/test_cases/dag_test_manual_allow_failure_true.yml
deleted file mode 100644
index b8fcdd1566a..00000000000
--- a/spec/services/ci/pipeline_processing/test_cases/dag_test_manual_allow_failure_true.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-config:
- test:
- stage: test
- when: manual
- allow_failure: true
- script: exit 1
-
- deploy:
- stage: deploy
- script: exit 0
- needs: [test]
-
-init:
- expect:
- pipeline: skipped
- stages:
- test: skipped
- deploy: skipped
- jobs:
- test: manual
- deploy: skipped
-
-transitions:
- - event: enqueue
- jobs: [test]
- expect:
- pipeline: pending
- stages:
- test: pending
- deploy: skipped
- jobs:
- test: pending
- deploy: skipped
-
- - event: run
- jobs: [test]
- expect:
- pipeline: running
- stages:
- test: running
- deploy: skipped
- jobs:
- test: running
- deploy: skipped
-
- - event: drop
- jobs: [test]
- expect:
- pipeline: success
- stages:
- test: success
- deploy: skipped
- jobs:
- test: failed
- deploy: skipped