-
Notifications
You must be signed in to change notification settings - Fork 1
/
test-config.yaml
43 lines (36 loc) · 963 Bytes
/
test-config.yaml
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
40
41
42
43
schemaVersion: '2.0.0'
commandTests:
- name: "terraform installation"
command: "terraform"
args: ["version"]
expectedOutput: ["v0.12.17\n"]
- name: "awless installation"
command: "awless"
args: ["version"]
expectedOutput: ["v0.1.11"]
- name: "packer installation"
command: "packer"
args: ["--version"]
expectedOutput: [
"1.1.3\n",
]
- name: "make installation"
command: "make"
args: ["-v"]
expectedOutput: ["GNU Make 4.2.*"]
- name: "jq installation"
command: "jq"
args: ["--version"]
expectedOutput: ["jq-1.6"]
- name: "ssh-keyscan installation"
command: "which"
args: ["ssh-keyscan"]
expectedOutput: ["/usr/bin/ssh-keyscan"]
- name: "ssh installation"
command: "which"
args: ["ssh"]
expectedOutput: ["/usr/bin/ssh"]
- name: "bash installation"
command: "bash"
args: ["--version"]
expectedOutput: ["GNU bash, version 5.0.0.*"]