-
Notifications
You must be signed in to change notification settings - Fork 118
/
tox.ini
131 lines (116 loc) · 2.79 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[tox]
envlist = clean,linters,docs,unit-tests
[testenv]
parallel_show_output = true
package = wheel
wheel_build_env = .pkg
[testenv:clean]
deps = coverage
skip_install = true
commands = coverage erase
[testenv:unit-tests]
usedevelop=True
basepython = python3
# {posargs} contains additional arguments specified when invoking tox. e.g. tox -- -s -k test_foo.py
deps =
{[test-deps]deps}
commands =
pytest {posargs} --cov=braket --cov-report term-missing --cov-report html --cov-report xml --cov-append
extras = test
[testenv:integ-tests]
basepython = python3
usedevelop=True
# {posargs} contains additional arguments specified when invoking tox. e.g. tox -- -s -k test_foo.py
deps =
{[test-deps]deps}
passenv =
AWS_PROFILE
AWS_REGION
BRAKET_ENDPOINT
commands =
pytest test/integ_tests {posargs}
extras = test
[testenv:linters]
basepython = python3
skip_install = true
deps =
{[testenv:isort]deps}
{[testenv:black]deps}
{[testenv:flake8]deps}
commands =
# isort MUST come before black as it will revert any changes made by black
{[testenv:isort]commands}
{[testenv:black]commands}
{[testenv:flake8]commands}
# Read only linter env
[testenv:linters_check]
basepython = python3
skip_install = true
deps =
{[testenv:isort_check]deps}
{[testenv:black_check]deps}
{[testenv:flake8]deps}
commands =
{[testenv:isort_check]commands}
{[testenv:black_check]commands}
{[testenv:flake8]commands}
[testenv:flake8]
basepython = python3
skip_install = true
deps =
flake8
git+https://github.com/amazon-braket/amazon-braket-build-tools.git
commands =
flake8 --extend-exclude src {posargs}
flake8 --enable-extensions=BCS src {posargs}
[testenv:isort]
basepython = python3
skip_install = true
deps =
isort
commands =
isort . {posargs}
[testenv:isort_check]
basepython = python3
skip_install = true
deps =
isort
commands =
isort . -c {posargs}
[testenv:black]
basepython = python3
skip_install = true
deps =
black
commands =
black ./ {posargs}
[testenv:black_check]
basepython = python3
skip_install = true
deps =
black
commands =
black --check ./ {posargs}
[testenv:docs]
basepython = python3
deps =
{[test-deps]deps}
commands =
sphinx-build -E -T -b html doc build/documentation/html -j auto
extras = docs
[testenv:serve-docs]
basepython = python3
skip_install = true
changedir = build/documentation/html
commands =
python -m http.server {posargs}
[testenv:zip-build]
basepython = python3
skip_install = true
commands =
/bin/sh -c 'tar -czvf build_files.tar.gz build/'
[test-deps]
deps =
# If you need to test on a certain branch, add @<branch-name> after .git
git+https://github.com/amazon-braket/amazon-braket-schemas-python.git
git+https://github.com/amazon-braket/amazon-braket-default-simulator-python.git