forked from n0fate/chainbreaker
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtox.ini
More file actions
37 lines (32 loc) · 639 Bytes
/
tox.ini
File metadata and controls
37 lines (32 loc) · 639 Bytes
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
[tox]
envlist = py3
skip_missing_interpreters = True
[flake8]
application_import_names = chainbreaker
import_order_style = google
max_line_length = 120
exclude = venv,.tox, build, keep_local, exports
ignore = N801,W503
[deps]
always =
-rrequirements.txt
test =
pytest
flake8
flake8-import-order
flake8-commas
pep8-naming
coverage
[testenv]
deps =
{[deps]always}
{[deps]test}
commands =
# NOTE: you can run any command line tool here - not just tests
pytest {posargs}
flake8
[testenv:py3-dist]
basepython = python3
skip_install = true
commands = python setup.py bdist_wheel
deps = wheel