-
Notifications
You must be signed in to change notification settings - Fork 2
/
.kitchen.yml
136 lines (131 loc) · 3.23 KB
/
.kitchen.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
---
driver:
name: vagrant
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.5
run_list:
- recipe[apt]
suites:
- name: python2
run_list:
- recipe[spython::2]
- recipe[spython_test::kitchen_user]
- 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::kitchen_user]
- 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
- 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