-
Notifications
You must be signed in to change notification settings - Fork 13
/
coyote-skip.yml
39 lines (32 loc) · 971 Bytes
/
coyote-skip.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
- name: coyote
title: Test Skips
- name: test group skip (skip)
skip: true
entries:
- command: echo "group skip, should not show"
- name: test group skip (not skip)
skip: false
entries:
- command: echo "group skip, should show"
- name: test group skip and noskip absence (not skip)
entries:
- command: echo "group skip/noskip, should show"
- name: test group noskip (not skip)
noskip: true
entries:
- command: echo "group noskip, should show"
- name: test group skip (skip)
noskip: _whatever_
entries:
- command: echo "group noskip, should not show"
- name: test commands
entries:
- command: echo "command skip, should not show"
skip: true
- command: echo "command skip, should show"
skip: false
- command: echo "command skip/noskip absence, should show"
- command: echo "command noskip, should show"
noskip: true
- command: echo "command noskip, should not show"
noskip: false