-
Notifications
You must be signed in to change notification settings - Fork 21
/
tox.ini
40 lines (35 loc) · 835 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
[tox]
minversion = 2.1
envlist = py35, py36, py37, lint
skipsdist = True
[testenv]
usedevelop = True
basepython = python3
install_command = pip install -c{toxinidir}/constraints.txt -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
LANGUAGE=en_US
LC_ALL=en_US.utf-8
ARGS="-V"
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
commands =
stestr run {posargs}
[testenv:online-mock]
setenv = {[testenv]setenv}
QISKIT_TESTS=mock_online
[testenv:recording]
setenv = {[testenv]setenv}
QISKIT_TESTS=rec
[testenv:lint]
commands =
pycodestyle --max-line-length=100 qiskit test
pylint -rn qiskit test
[testenv:coverage]
setenv =
{[testenv]setenv}
PYTHON=coverage3 run --source qiskit --parallel-mode
commands =
stestr run {posargs}
coverage3 combine
coverage3 report