forked from qiskit-community/qiskit-optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
64 lines (57 loc) · 1.67 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
[tox]
minversion = 3.3.0
envlist = py38, py39, py310, py311, py312, lint
skipsdist = True
[testenv]
usedevelop = True
install_command = pip install -c constraints.txt -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
LANGUAGE=en_US
LC_ALL=en_US.utf-8
ARGS="-V"
deps = git+https://github.com/Qiskit/qiskit.git
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
cplex
cvxpy
matplotlib
gurobipy
commands =
stestr run {posargs}
[testenv:lint]
envdir = .tox/lint
basepython = python3
commands =
black --check {posargs} qiskit_optimization test tools docs setup.py
pylint -rn qiskit_optimization test tools
mypy qiskit_optimization test tools
python3 {toxinidir}/tools/check_copyright.py -path {toxinidir}
python3 {toxinidir}/tools/verify_headers.py qiskit_optimization test tools setup.py
python3 {toxinidir}/tools/find_stray_release_notes.py
[testenv:black]
envdir = .tox/lint
commands = black {posargs} qiskit_optimization test tools docs setup.py
[testenv:coverage]
basepython = python3
setenv =
{[testenv]setenv}
PYTHON=coverage3 run --source qiskit_optimization --parallel-mode
commands =
stestr run {posargs}
coverage3 combine
coverage3 report
[testenv:docs]
# Editable mode breaks macOS: https://github.com/sphinx-doc/sphinx/issues/10943
usedevelop = False
envdir = .tox/docs
basepython = python3
deps =
-r{toxinidir}/requirements-dev.txt
.
commands =
sphinx-build -j auto -W -T --keep-going -b html {posargs} docs/ docs/_build/html
[pycodestyle]
max-line-length = 105
# + E203 because of a difference of opinion with black
ignore = E121, E123, E126, E133, E226, E241, E242, E704, W503, W504, W505, E203