-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtox.ini
More file actions
43 lines (37 loc) · 662 Bytes
/
tox.ini
File metadata and controls
43 lines (37 loc) · 662 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
38
39
40
41
42
43
[tox]
envlist = py26,py27,pypy,py32,py33,py34,pep8,py3pep8
[testenv]
deps =
coverage
pytest
hypothesis
hypothesis-pytest
commands =
coverage run --source=aead -m pytest --capture=no --strict {posargs}
coverage report -m
[testenv:py26]
deps =
coverage
pytest
commands =
coverage run --source=aead -m pytest --capture=no --strict {posargs}
coverage report -m
[testenv:pep8]
deps =
flake8
flake8-import-order
pep8-naming
commands =
flake8 .
[testenv:py3pep8]
basepython = python3.3
deps =
flake8
flake8-import-order
pep8-naming
commands =
flake8 .
[flake8]
exclude = .tox,*.egg,.hypothesis
select = E,W,F,N,I
application-import-names = aead