-
Notifications
You must be signed in to change notification settings - Fork 124
/
tox.ini
55 lines (49 loc) · 1.35 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
[tox]
envlist=docs,py{38,39,310,311,312,313,py3},py{38}-pytest{main}
[testenv]
commands=
{env:_PLUGGY_TOX_CMD:pytest} {posargs}
coverage: coverage report -m
coverage: coverage xml
setenv=
_PYTEST_SETUP_SKIP_PLUGGY_DEP=1
coverage: _PLUGGY_TOX_CMD=coverage run -m pytest
extras=testing
deps=
coverage: coverage
pytestmain: git+https://github.com/pytest-dev/pytest.git@main
[testenv:benchmark]
commands=pytest {posargs:testing/benchmark.py}
deps=
pytest
pytest-benchmark
[testenv:docs]
deps =
-r{toxinidir}/docs/requirements.txt
commands =
python scripts/towncrier-draft-to-file.py
# the '-t changelog_towncrier_draft' tags makes sphinx include the draft
# changelog in the docs; this does not happen on ReadTheDocs because it uses
# the standard sphinx command so the 'changelog_towncrier_draft' is never set there
sphinx-build -W -b html {toxinidir}/docs {toxinidir}/build/html-docs -t changelog_towncrier_draft {posargs:}
[pytest]
minversion=8.0
testpaths = testing
#--pyargs --doctest-modules --ignore=.tox
addopts=-r a
filterwarnings =
error
[flake8]
max-line-length=99
min-python-version = 3.8
[testenv:release]
description = do a release, required posarg of the version number
basepython = python3
skipsdist = True
usedevelop = True
passenv = *
deps =
colorama
gitpython
towncrier
commands = python scripts/release.py {posargs}