forked from lyft/python-confidant-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
31 lines (27 loc) · 840 Bytes
/
setup.cfg
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
# Project specific configuration used by the following tools:
# - nosetests
# - flake8
#
# nosetests only support setup.cfg. flake8 supports both setup.cfg and tox.ini. In
# In order to not have too many files around, we'll use setup.cfg for now.
[nosetests]
# Turn this back on if the logs to too spammy.
#nocapture=1
with-xunit = 1
xunit-file = build/nosetests.xml
cover-package = confidant_client
cover-xml = 1
cover-xml-file = build/coverage.xml
cover-min-percentage = 45
[flake8]
# The jenkins violations plugin can read the pylint format.
format = pylint
max-line-length = 80
# .svn,CVS,.bzr,.hg,.git,__pycache__:
# default excludes
# venv/:
# third party libraries are all stored in venv - so we don't want to
# check them for style issues.
exclude = .git,__pycache__,venv,tests/,.ropeproject
[pep8]
max-line-length = 80