forked from anaconda/anaconda-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
36 lines (31 loc) · 821 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
[bdist_wheel]
universal=1
[flake8]
ignore=E126,W503,W504,E501
exclude=.git,__pycache__,build,dist
[pep257]
inherit=false
# D203 is "there must be a blank line before class docstring"
# which conflicts with D211 "there cannot be a blank line before
# class docstring"
add-ignore=D203,D202,D204
[yapf]
column_limit=120
[versioneer]
VCS = git
style = pep440
versionfile_source = anaconda_project/_version.py
versionfile_build = anaconda_project/_version.py
tag_prefix = v
parentdir_prefix = anaconda_project-
[tool:pytest]
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
norecursedirs= .* *.egg* build bin dist conda.recipe scripts examples
addopts =
-vvrfe
--durations=10
--cov-config=.coveragerc
--cov-report=xml:cov.xml
--cov-report=term-missing
--cov=anaconda_project