forked from bitshares/python-bitshares
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (43 loc) · 910 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[metadata]
description-file = README.md
[aliases]
test=pytest
[coverage:run]
source=bitsharesbase,bitsharesapi,bitshares
branch=True
omit=
tests/*
.tox/*
.eggs/*
[coverage:report]
include=bitshares*
ignore_errors=True
show_missing=True
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
if sys.version > '3':
[flake8]
ignore = E501,F401
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
# [nosetests]
# with-coverage=1
# with-xunit=1
# #cover-branches=1
# cover-xml=1
# cover-inclusive=1
# detailed-errors=1
# cover-package=graphenebase,grapheneapi,graphenestorage,graphene