Stop relying on usedevelop in tox
[mudpy.git] / tox.ini
1 # Copyright (c) 2016-2021 mudpy authors. Permission to use, copy,
2 # modify, and distribute this software is granted under terms
3 # provided in the LICENSE file distributed with this software.
4
5 [tox]
6 minversion = 3.18
7 envlist = bandit, codespell, dist, docs, flake8, yamllint, selftest_config, py3
8 skipsdist = True
9 ignore_basepython_conflict = True
10
11 [testenv]
12 description = run the functional selftest with optimized configuration
13 basepython = python3
14 # TODO(fungi) Switch this to "error" once the following are solved
15 #
16 # py311... Cython.Compiler.Main raises FutureWarning "Cython directive
17 #   'language_level' not set, using 2 for now (Py2). This will change in a
18 #   later release!" but this can't be matched by message because it has a comma
19 # py310... distutils.command.install raises DeprecationWarning "The
20 #   distutils.sysconfig module is deprecated, use sysconfig instead" but this
21 #   can't be matched by message because it contains a comma
22 # flake8... flake8.plugins.manager raises DeprecationWarning "SelectableGroups
23 #   dict interface is deprecated. Use select."
24 # multiple callers raise DeprecationWarning "The distutils package is
25 #   deprecated and slated for removal in Python 3.12. Use setuptools or check
26 #   PEP 632 for potential alternatives"
27 # multiple callers raise DeprecationWarning "Creating a LegacyVersion has been
28 #   deprecated and will be removed in the next major release"
29 # SetupTools raises
30 #   setuptools._deprecation_warning.SetuptoolsDeprecationWarning "setup.py
31 #   install is deprecated. Use build and pip and other standards-based tools."
32 #   but only the message can be matched because the exception is private
33 # SetupTools raises
34 #   setuptools._deprecation_warning.SetuptoolsDeprecationWarning
35 #   "setup_requires is deprecated. Supply build dependencies using PEP 517
36 #   pyproject.toml build-requires." but only the message can be matched because
37 #   the exception is private
38 # SetupTools raises
39 #   setuptools._deprecation_warning.SetuptoolsDeprecationWarning "easy_install
40 #   command is deprecated. Use build and pip and other standards-based tools."
41 #   but only the message can be matched because the exception is private
42 # filelock raises DeprecationWarning "use poll_interval instead of
43 #   poll_intervall"
44 setenv =
45     PYTHONWARNINGS = error, ignore::FutureWarning:Cython.Compiler.Main, ignore::DeprecationWarning:distutils.command.install, ignore:The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives:DeprecationWarning, ignore:Creating a LegacyVersion has been deprecated and will be removed in the next major release:DeprecationWarning, ignore:SelectableGroups dict interface is deprecated. Use select.:DeprecationWarning:flake8.plugins.manager, ignore:setup.py install is deprecated. Use build and pip and other standards-based tools., ignore:easy_install command is deprecated. Use build and pip and other standards-based tools., ignore:use poll_interval instead of poll_intervall:DeprecationWarning
46     VIRTUALENV_CREATOR = venv
47 commands = mudpy_selftest mudpy/tests/fixtures/test_daemon.yaml
48 deps = {toxinidir}
49
50 [testenv:bandit]
51 description = check for potential security risks in source code
52 deps = bandit
53 commands = bandit -r mudpy -x mudpy/tests {posargs}
54
55 [testenv:codespell]
56 description = find common spelling mistakes in code and documentation
57 deps = codespell
58 commands = codespell {posargs}
59
60 [testenv:demo]
61 description = start an interactive demo with the sample config
62 commands = mudpy {posargs}
63
64 [testenv:dist]
65 description = build release artifacts and check for conformance
66 allowlist_externals = rm
67 deps =
68     build
69     twine
70 commands =
71     rm -fr {toxinidir}/dist
72     python -m build
73     twine check --strict {toxinidir}/dist/*
74
75 [testenv:docs]
76 # Build an sdist into a temporary location so we'll have AUTHORS and ChangeLog
77 # files to include.
78 description = generate hypertext documentation
79 allowlist_externals = rm
80 deps =
81     {toxinidir}
82     build
83     sphinx
84 commands =
85     rm -fr {toxinidir}/doc/build
86     python -m build --outdir={toxinidir}/doc/build/dist --sdist
87     sphinx-build -W -d doc/build/doctrees -b html doc/source/ doc/build/html
88
89 [testenv:flake8]
90 description = style checks and static analysis of source code
91 deps =
92     flake8
93     flake8-bugbear
94 commands = flake8 {posargs}
95
96 [testenv:selftest_config]
97 description = run the selftest with the included sample config
98 commands = mudpy_selftest etc/mudpy.yaml
99
100 [testenv:yamllint]
101 # Run the selftest before checking YAML files so we'll be sure to also catch at
102 # least some which are generated by the application, making sure it creates
103 # them with the same style we enforce for those carried in the repository.
104 description = test data files for correct syntax and formatting
105 deps =
106     {toxinidir}
107     yamllint
108 commands =
109     mudpy_selftest mudpy/tests/fixtures/test_daemon.yaml
110     yamllint --strict {posargs} .
111
112 [flake8]
113 show-source = True
114 exclude = .git, .tox, *lib/python*, *egg, build