File: .zuul.yaml

package info (click to toggle)
python-oslo.cache 3.10.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 776 kB
  • sloc: python: 3,055; sh: 31; makefile: 24
file content (97 lines) | stat: -rw-r--r-- 2,520 bytes parent folder | download | duplicates (2)
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
## Functional Tests env vars
#
# PIFPAF_DAEMON:
#   The binary to be installed by bindep filtered with
#   [tests-functional-{PIFPAF_DAEMON}] and executed by pifpaf.
#
# OSLO_BACKEND:
#   The functional test directory to pass to STESTR_TEST_PATH

- job:
    name: oslo.cache-functional
    parent: openstack-tox
    abstract: true
    pre-run: playbooks/tests/functional/pre.yml
    vars:
      tox_envlist: functional
    irrelevant-files:
      - ^.*\.rst$
      - ^doc/.*$
      - LICENSE
      - ^releasenotes/.*$
      - ^\.pre-commit-config\.yaml$

- job:
    name: oslo.cache-functional-etcd3gw
    parent: oslo.cache-functional
    vars:
      tox_environment:
        PIFPAF_DAEMON: etcd
        OSLO_BACKEND: etcd3gw

- job:
    name: oslo.cache-functional-memcached
    parent: oslo.cache-functional
    vars:
      tox_environment:
        PIFPAF_DAEMON: memcached

- job:
    name: oslo.cache-functional-dogpile.cache.bmemcached
    parent: oslo.cache-functional-memcached
    vars:
      tox_environment:
        OSLO_BACKEND: dogpile_cache_bmemcached

- job:
    name: oslo.cache-functional-dogpile.cache.pymemcache
    parent: oslo.cache-functional-memcached
    vars:
      tox_environment:
        OSLO_BACKEND: dogpile_cache_pymemcache

- job:
    name: oslo.cache-functional-memcache_pool
    parent: oslo.cache-functional-memcached
    vars:
      tox_environment:
        OSLO_BACKEND: memcache_pool

- job:
    name: oslo.cache-functional-redis
    parent: oslo.cache-functional
    vars:
      tox_environment:
        PIFPAF_DAEMON: redis

- job:
    name: oslo.cache-functional-dogpile.cache.redis
    parent: oslo.cache-functional-redis
    vars:
      tox_environment:
        OSLO_BACKEND: dogpile_cache_redis

- job:
    name: oslo.cache-functional-dogpile.cache.redis_sentinel
    parent: oslo.cache-functional-redis
    vars:
      tox_environment:
        OSLO_BACKEND: dogpile_cache_redis_sentinel
        PIFPAF_OPTS: --sentinel

- project:
    templates:
      - check-requirements
      - lib-forward-testing-python3
      - openstack-python3-jobs
      - periodic-stable-jobs
      - publish-openstack-docs-pti
      - release-notes-jobs-python3
    check:
      jobs:
        - oslo.cache-functional-etcd3gw
        - oslo.cache-functional-dogpile.cache.bmemcached
        - oslo.cache-functional-dogpile.cache.pymemcache
        - oslo.cache-functional-memcache_pool
        - oslo.cache-functional-dogpile.cache.redis
        - oslo.cache-functional-dogpile.cache.redis_sentinel