-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
63 lines (52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tox]
skipsdist = true
[testenv]
deps =
ansible
docker
molecule
testinfra
yamllint
ansible-lint
prospector
[testenv:amazonlinux-2]
setenv =
MOLECULE_DISTRO=amazonlinux:2
commands = molecule test --all --parallel
[testenv:amazonlinux-1]
setenv =
MOLECULE_DISTRO=amazonlinux:1
commands = molecule test --all --parallel
[testenv:debian-stable]
setenv =
MOLECULE_DISTRO=debian:stable
commands = molecule test --all --parallel
[testenv:debian-oldstable]
setenv =
MOLECULE_DISTRO=debian:oldstable
commands = molecule test --all --parallel
[testenv:el7]
setenv =
MOLECULE_DISTRO=centos:7
commands = molecule test --all --parallel
[testenv:fedora-latest]
setenv =
MOLECULE_DISTRO=fedora:latest
ANSIBLE_PYTHON_INTERPRETER=/usr/bin/python3
commands = molecule test --all --parallel
[testenv:ubuntu-bionic]
setenv =
MOLECULE_DISTRO=ubuntu:bionic
commands = molecule test --all --parallel
[testenv:ubuntu-focal]
setenv =
MOLECULE_DISTRO=ubuntu:focal
commands = molecule test --all --parallel
[testenv:ubuntu-xenial]
setenv =
MOLECULE_DISTRO=ubuntu:xenial
commands = molecule test --all --parallel
[testenv:ubuntu-trusty]
setenv =
MOLECULE_DISTRO=ubuntu:trusty
commands = molecule test --all --parallel