-
Notifications
You must be signed in to change notification settings - Fork 154
/
tox.ini
56 lines (50 loc) · 1.12 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
[tox]
minversion = 3.15
envlist = py38, py39, py310, py311, py312, lint, docs
isolated_build = True
[testenv]
usedevelop = true
install_command = pip install -c{toxinidir}/constraints.txt -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
LANGUAGE=en_US
LC_ALL=en_US.utf-8
passenv =
GITHUB_REF_NAME
GITHUB_BASE_REF
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
-r{toxinidir}/requirements-visual.txt
commands =
python -m unittest -v
[testenv:lint]
deps =
pylint
doc8
commands =
pylint -rn --rcfile={toxinidir}/.pylintrc test
doc8 docs
{toxinidir}/tools/verify_headers.py qiskit test
[testenv:asv]
deps =
asv
virtualenv
commands =
asv run {posargs}
[testenv:docs]
envdir = .tox/docs
deps =
-r requirements-dev.txt
-r requirements-visual.txt
commands =
python tools/concat_release_notes.py
sphinx-build -j auto -W -b html {posargs} {toxinidir}/docs {toxinidir}/docs/_build/html
[testenv:docs-clean]
skip_install = true
deps =
allowlist_externals = rm
commands = rm -rf {toxinidir}/docs/stubs/ {toxinidir}/docs/_build
[doc8]
max-line-length=100
ignore-path=docs/_build