-
-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathtox.ini
More file actions
19 lines (16 loc) · 532 Bytes
/
tox.ini
File metadata and controls
19 lines (16 loc) · 532 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; Settings file for flake8:
; http://flake8.readthedocs.org/en/latest/config.html#settings
[flake8]
exclude = .tox,./build,./trepan/processor/command/tmp,./trepan/version.py
filename = *.py
ignore = C901,E113,E121,E122,E123,E124,E125,E126,E127,E128,E129,E201,E202,E203,E221,E222,E225,E226,E241,E242,E251,E261,E271,E272,E302,E401,E501,F401,E701,E702
[tox]
envlist = py26, py27, pypy
[testenv]
deps =
requests>=0.8.8
mock>=1.0.1
commands = python -W always setup.py nosetests {posargs}
[testenv:py27]
deps =
flake8