forked from xeroc/python-graphenelib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
64 lines (58 loc) · 1.17 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[metadata]
description-file = README.md
[aliases]
test=pytest
[coverage:run]
source=graphenebase,grapheneapi,graphenestorage,graphenecommon
branch=True
omit=
tests/*
.tox/*
.eggs/*
[coverage:report]
ignore_errors=True
show_missing=True
include=graphene*
omit =
# This file is proven and won't be touch
grapheneapi/grapheneapi.py
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise ImportError
raise AssertionError
raise NotImplementedError
except ImportError:
if 0:
if __name__ == .__main__.:
if sys.version > '3':
SECP256K1_MODULE
[flake8]
select = C,E,F,W,B,B950
ignore = E501,F401,E203,W503
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/conf.py,
max-complexity = 15
max-line-length = 88
[isort]
atomic=true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
line_length = 88
known_third_party =
include_trailing_comma = true
[nosetests]
verbosity=3
nocapture=1
nologcapture=1
cover-xml=1
with-coverage=1
with-xunit=1