-
Notifications
You must be signed in to change notification settings - Fork 19
/
.zuul.yaml
50 lines (49 loc) · 1.18 KB
/
.zuul.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
44
45
46
47
48
49
50
---
- job:
name: openstack-image-manager-integration-test
pre-run: playbooks/pre-integration-test.yml
run: playbooks/integration-test.yml
# The deployment of Devstack can take more time than our default timeout.
timeout: 7200
roles:
- zuul: osism/zuul-jobs
name: devstack
- project:
merge-mode: squash-merge
default-branch: main
check:
jobs:
- flake8
- hadolint
- mypy
- openstack-image-manager-integration-test
- python-black
- tox:
vars:
tox_envlist: test
tox_extra_args: -- test/unit
- yamllint
gate:
jobs:
- flake8
- hadolint
- mypy
- openstack-image-manager-integration-test
- python-black
- tox:
vars:
tox_envlist: test
tox_extra_args: -- test/unit
- yamllint
periodic-daily:
jobs:
- flake8
- hadolint
- mypy
- openstack-image-manager-integration-test
- python-black
- tox:
vars:
tox_envlist: test
tox_extra_args: -- test/unit
- yamllint