-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
59 lines (51 loc) · 1.08 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
[isort]
profile=black
[flake8]
max-line-length = 100
exclude = build,anaconda_anon_usage/_version.py,tests,conda.recipe,.git,versioneer.py,benchmarks,.asv
[tool:pytest]
minversion = 3.0
norecursedirs=
.*
*.egg*
build
dist
conda.recipe
tests/integration
addopts =
--color=yes
--cov anaconda_anon_usage
--cov-report term-missing
--cov-report xml
--cov-append
--cov-branch
--durations=20
--ignore setup.py
--ignore run_test.py
--junitxml=junit.xml
--strict-markers
--tb native
-vv
markers =
serial: execute test serially (to avoid race conditions)
testpaths = ["tests"]
[versioneer]
VCS = git
versionfile_source = anaconda_anon_usage/_version.py
versionfile_build = anaconda_anon_usage/_version.py
tag_prefix =
parentdir_prefix = anaconda-anon-usage-
[bdist_wheel]
universal=1
[coverage:run]
omit =
tests/*
anaconda_anon_usage/install.py
anaconda_anon_usage/_version.py
[coverage:report]
exclude_also =
_debug\(
omit =
tests/*
anaconda_anon_usage/install.py
anaconda_anon_usage/_version.py