No longer run setup.py in docs builds
[mudpy.git] / tox.ini
1 # Copyright (c) 2016-2020 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.1
7 envlist = bandit, dist, docs, flake8, yamllint, selftest_config, py3
8 skipsdist = True
9 ignore_basepython_conflict = True
10
11 [testenv]
12 basepython = python3
13 usedevelop = True
14 install_command = pip install {opts} {packages}
15 setenv =
16     PYTHONWARNINGS=default::DeprecationWarning
17 commands = mudpy_selftest mudpy/tests/fixtures/test_daemon.yaml
18
19 [testenv:bandit]
20 deps = bandit
21 commands = bandit -r mudpy -x mudpy/tests {posargs}
22 usedevelop = False
23
24 [testenv:demo]
25 commands = mudpy {posargs}
26
27 [testenv:dist]
28 whitelist_externals = rm
29 deps =
30     pbr
31     twine
32     wheel
33 commands =
34     rm -fr dist
35     python setup.py bdist_wheel sdist
36     twine check dist/*
37 usedevelop = False
38
39 [testenv:docs]
40 whitelist_externals = rm
41 deps =
42     -r{toxinidir}/requirements.txt
43     -r{toxinidir}/doc/requirements.txt
44 commands =
45     rm -fr doc/build
46     sphinx-build -W -d doc/build/doctrees -b html doc/source/ doc/build/html
47 usedevelop = False
48
49 [testenv:flake8]
50 deps =
51     flake8
52     flake8-bugbear
53 commands = flake8 {posargs}
54 usedevelop = False
55
56 [testenv:selftest_config]
57 commands = mudpy_selftest etc/mudpy.yaml
58
59 [testenv:yamllint]
60 deps = yamllint
61 commands = yamllint --strict {posargs} .
62 usedevelop = False
63
64 [flake8]
65 show-source = True
66 exclude=.git,.tox,*lib/python*,*egg,build