forked from transifex/transifex-python-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (36 loc) · 859 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
[bdist_wheel]
universal = 1
[devpi:upload]
formats = bdist_wheel,sdist.tgz
[versioneer]
VCS = git
versionfile_source = txlib_too/_version.py
versionfile_build = txlib_too/_version.py
tag_prefix = v
[tools:pytest]
testpaths = txlib_too
[coverage:run]
include = txlib_too/*
omit =
txlib_too/_version.py
branch = True
[coverage:xml]
output = test-results/cov.xml
[coverage:report]
show_missing = True
skip_covered = True
fail_under = 74
exclude_lines =
pragma: no cover
# Don't complain about missing debug-only code:
def __unicode__
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Ignore import exceptions
except ImportError:
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.: