-
Notifications
You must be signed in to change notification settings - Fork 33
/
tox.ini
44 lines (40 loc) · 898 Bytes
/
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
[tox]
minversion = 2.1
envlist = py311, lint, coverage
# CI: skip-next-line
skipsdist = true
# CI: skip-next-line
skip_missing_interpreters = true
[testenv]
# CI: skip-next-line
usedevelop = true
install_command =
pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
LANGUAGE=en_US
LC_ALL=en_US.utf-8
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
deps = -rrequirements.txt
-rrequirements-dev.txt
commands =
pip install .
pip check
python -m pytest -v
[testenv:lint]
skip_install = true
commands =
black --diff --check .
pylint -rn qiskit_serverless tests
mypy --install-types --non-interactive .
[testenv:black]
skip_install = true
commands = black .
[testenv:coverage]
basepython = python3
setenv =
{[testenv]setenv}
commands =
coverage3 run --source qiskit_serverless --parallel-mode -m pytest
coverage3 combine
coverage3 report --fail-under=70