forked from bodsch/ansible-corretto-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
37 lines (29 loc) · 730 Bytes
/
tox.ini
File metadata and controls
37 lines (29 loc) · 730 Bytes
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
[tox]
minversion = 1.8
envlist = py{37,38,39}-ansible{28,29,210}
skipsdist = true
[travis:env]
ANSIBLE=
2.8: ansible28
2.9: ansible29
[gh-actions]
ansible =
2.8: ansible28
2.9: ansible29
2.10: ansible210
python =
3.7: py37
3.8: py38
3.9: py39
[testenv]
passenv = *
deps =
-r test-requirements.txt
ansible28: ansible>=2.8,<2.9
ansible29: ansible>=2.9,<2.10
ansible210: ansible>=2.10,<2.11
commands_pre =
/usr/bin/find {toxinidir} -type f -not -path '{toxinidir}/.tox/*' -path '*/__pycache__/*' -name '*.py[c|o]' -delete
/bin/sh -c '/usr/bin/find {homedir}/.cache -type d -path "*/molecule_*" -exec rm -rfv \{\} +;'
commands =
{posargs:molecule test --all --destroy always}