* added flake8 and flake8-import-order to travis for py27 * fixed a test that fails from time to time depending on an order of a dict * flake8 tweaks for the entire codebase excluding tests
14 lines
272 B
INI
14 lines
272 B
INI
[nosetests]
|
|
verbosity = 2
|
|
detailed-errors = 1
|
|
cover-erase = 1
|
|
cover-branches = 1
|
|
cover-package = mongoengine
|
|
tests = tests
|
|
|
|
[flake8]
|
|
ignore=E501,F401,F403,F405,I201
|
|
exclude=build,dist,docs,venv,.tox,.eggs,tests
|
|
max-complexity=42
|
|
application-import-names=mongoengine,tests
|