This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtox.ini
101 lines (94 loc) · 2.71 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
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
98
99
100
101
[tox]
minversion = 3.9.0
envlist =
lint
packaging
py{36,37,38,39}
py{36,37,38,39}-{devel}
# do not enable skip missing to avoid CI false positives
skip_missing_interpreters = False
isolated_build = True
requires =
# 2020-resolver
pip >= 20.2.4
[testenv]
usedevelop = True
# do not put * in passenv as it may break builds do to reduced isolation
passenv =
CI
CONTAINER_*
DOCKER_*
GITHUB_*
HOME
PODMAN_*
PYTEST_*
SSH_AUTH_SOCK
TERM
setenv =
ANSIBLE_CONFIG={toxinidir}/dev/null
ANSIBLE_CALLABLE_WHITELIST={env:ANSIBLE_CALLABLE_WHITELIST:timer,profile_roles}
ANSIBLE_DISPLAY_FAILED_STDERR=1
ANSIBLE_VERBOSITY=1
MOLECULE_NO_LOG=0
PYTHONDONTWRITEBYTECODE=1
PYTHONUNBUFFERED=1
# PIP_USE_FEATURE={env:PIP_USE_FEATURE:2020-resolver}
deps =
devel: ansible>=2.10.3,<2.11
py{36,37,38,39}: molecule[ansible,test]
py{36,37,38,39}-{devel}: git+https://github.com/ansible-community/molecule.git@master#egg=molecule[ansible,test]
dockerfile: ansible>=2.9.12
cookiecutter
molecule-docker
docker>=4.3.1
extras =
ansible
lint
test
commands =
ansibledevel: ansible-galaxy install git+https://github.com/ansible-collections/community.general.git
# failsafe as pip may install incompatible dependencies
pip check
# use cookiecutter to deploy the functional test verify playbooks
cookiecutter -f molecule_inspec/cookiecutter/ --output-dir molecule_inspec/test/scenarios/docker/centos7/ --no-input
cookiecutter -f molecule_inspec/cookiecutter/ --output-dir molecule_inspec/test/scenarios/docker/ubuntu18.04/ --no-input
# failsafe for preventing changes that may break pytest collection
python -m pytest -p no:cov --collect-only
python -m pytest {posargs:-l}
whitelist_externals =
find
rm
sh
[testenv:lint]
description = Runs all linting tasks
commands =
# to run a single linter you can do "pre-commit run flake8"
python -m pre_commit run {posargs:--all}
deps = pre-commit>=1.18.1
extras =
skip_install = true
usedevelop = false
[testenv:packaging]
description =
Do packaging/distribution. If tag is not present or PEP440 compliant upload to
PYPI could fail
# `usedevelop = true` overrides `skip_install` instruction, it's unwanted
usedevelop = false
# don't install molecule itself in this env
skip_install = true
deps =
collective.checkdocs >= 0.2
pep517 >= 0.8.2
pip >= 20.2.2
toml >= 0.10.1
twine >= 3.2.0 # pyup: ignore
setenv =
commands =
rm -rfv {toxinidir}/dist/
python -m pep517.build \
--source \
--binary \
--out-dir {toxinidir}/dist/ \
{toxinidir}
# metadata validation
sh -c "python -m twine check {toxinidir}/dist/*"