-
Notifications
You must be signed in to change notification settings - Fork 524
/
tox.ini
41 lines (38 loc) · 1.24 KB
/
tox.ini
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
[tox]
envlist = ceph_ansible-{all_daemons,lvm_osds,collocation}
skipsdist = True
[testenv]
allowlist_externals =
vagrant
bash
pip
git
passenv=*
setenv=
TOXINIDIR = {toxinidir}
ANSIBLE_CONFIG = {toxinidir}/ceph-ansible/ansible.cfg
ANSIBLE_ACTION_PLUGINS = {toxinidir}/ceph-ansible/plugins/actions
ANSIBLE_CALLBACK_PLUGINS = {toxinidir}/ceph-ansible/plugins/callback
ANSIBLE_CALLBACK_WHITELIST = profile_tasks
ANSIBLE_FILTER_PLUGINS = {toxinidir}/ceph-ansible/plugins/filter
ANSIBLE_STDOUT_CALLBACK = debug
all_daemons: CEPH_ANSIBLE_SCENARIO_PATH = {toxinidir}/ceph-ansible/tests/functional/all_daemons/container
collocation: CEPH_ANSIBLE_SCENARIO_PATH = {toxinidir}/ceph-ansible/tests/functional/collocation/container
lvm_osds: CEPH_ANSIBLE_SCENARIO_PATH = {toxinidir}/ceph-ansible/tests/functional/lvm-osds/container
REGISTRY_ADDRESS = 192.168.121.1:5000
CEPH_ANSIBLE_BRANCH = main
VAGRANT_PROVIDER = {env:VAGRANT_PROVIDER:libvirt}
CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8
REGISTRY = quay.io
VS_BRANCH = origin/{env:ghprbTargetBranch:}
commands=
bash {toxinidir}/tests/tox.sh
# Flake8 config
[flake8]
max-line-length = 99
max-complexity = 10
filename = *.py
exclude =
.git
__pycache__
NOT_MAINTAINED_ANYMORE