-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
36 lines (34 loc) · 893 Bytes
/
.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
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.04
run_list:
attributes: {
locking_resource: {
restart_lock_acquire: {
timeout: 3
}
}
}
suites:
- name: simple_locking_resource
run_list:
- 'recipe[locking_resource_test::simple_serialized_lock]'
- name: held_serialized_lock
run_list:
- 'recipe[locking_resource_test::held_serialized_lock]'
- name: exception_serialized_lock
run_list:
- 'recipe[locking_resource_test::exception_serialized_lock]'
- name: serialized_process
run_list:
- 'recipe[locking_resource_test::serialized_process_lock_handling]'
- name: re_run_lock_older
run_list:
- 'recipe[locking_resource_test::re_run_lock_older]'
- name: re_run_lock_newer
run_list:
- 'recipe[locking_resource_test::re_run_lock_newer]'