-
Notifications
You must be signed in to change notification settings - Fork 2
/
.kitchen.docker.yml
178 lines (173 loc) · 3.99 KB
/
.kitchen.docker.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
---
driver:
name: docker
binary: docker
use_sudo: false
provisioner:
name: chef_zero
chef_license: accept
product_name: chef
product_version: <%= ENV['KITCHEN_CHEF_VERSION'] || ENV['CHEF_VERSION'] || 'latest' %>
client_rb:
ohai.directory: /tmp/kitchen/ohai/cookbook_plugins
verifier:
name: inspec
platforms:
- name: debian-9
run_list:
- recipe[apt]
- name: debian-10
run_list:
- recipe[apt]
- name: debian-bullseye
run_list:
- recipe[apt]
- name: ubuntu-16.04
run_list:
- recipe[apt]
- recipe[locales]
- name: ubuntu-18.04
run_list:
- recipe[apt]
- name: centos-7
run_list:
- recipe[yum-epel]
attributes:
spython:
"2":
pip_upgrade: ==20.3.4
setuptools_upgrade: true
"3":
pip_upgrade: ==20.3.4
verifier:
inputs:
packages:
pip: 20.3.4
suites:
- name: python2
excludes:
- debian-bullseye
- ubuntu-18.04
run_list:
- recipe[spython::2]
- recipe[spython_test::venv]
attributes:
spython:
"2":
pip_packages:
click: null
PyYAML: 3.13
spython_test:
venv: /tmp/test-venv
user: kitchen
group: kitchen
runtime: 2
venv_packages:
pyusb: 1.0.1
PyYAML: 3.13
verifier:
inspec_tests:
- path: test/integration/default
inputs:
runtime: 2
pip_bin: pip2
packages:
click: null
PyYAML: 3.13
venv: /tmp/test-venv
user: kitchen
group: kitchen
venv_packages:
pyusb: 1.0.1
PyYAML: 3.13
- name: python3
run_list:
- recipe[spython::3]
- recipe[spython_test::venv]
attributes:
spython:
"3":
pip_packages:
click: null
PyYAML: 3.13
spython_test:
venv: /tmp/test-venv
user: kitchen
group: kitchen
runtime: 3
venv_packages:
pyusb: 1.0.1
PyYAML: 3.13
verifier:
inspec_tests:
- path: test/integration/default
inputs:
runtime: 3
pip_bin: pip3
packages:
click: null
PyYAML: 3.13
venv: /tmp/test-venv
user: kitchen
group: kitchen
venv_packages:
pyusb: 1.0.1
PyYAML: 3.13
- name: ifs-no-version
# Pip freeze when installing package from source in pip 20.3.4 can result to:
# soundcloud-syncer @ file:///tmp/kitchen/test-install-from-src
run_list:
- recipe[spython::3]
- recipe[spython_test::install_from_source]
attributes:
spython:
"3":
pip_upgrade: ==20.3.4
spython_test:
repo: https://github.com/Sliim/soundcloud-syncer
ref: 0.3.3
runtime: 3
verifier:
inspec_tests:
- path: test/integration/default
inputs:
runtime: 3
pip_bin: pip3
packages:
soundcloud-syncer: null
venv: null
excludes:
- debian-10
- debian-bullseye
- ubuntu-16.04
- ubuntu-18.04
- centos-7
- name: ifs-arbitrary-equality
# Pip freeze when installing package from source with a special version can result to
# an arbitrary equality:
# soundcloud-syncer===13.37.0-42-8821b53
# See https://www.python.org/dev/peps/pep-0440/#arbitrary-equality
run_list:
- recipe[spython::3]
- recipe[spython_test::install_from_source]
attributes:
spython_test:
repo: https://github.com/Sliim/soundcloud-syncer
ref: 0.3.3
runtime: 3
update_version: 13.37.0-42-8821b53
verifier:
inspec_tests:
- path: test/integration/default
inputs:
runtime: 3
pip_bin: pip3
packages:
soundcloud-syncer: 13.37.0-42-8821b53
venv: null
excludes:
- debian-10
- debian-bullseye
- ubuntu-16.04
- ubuntu-18.04
- centos-7