forked from conda/conda-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (44 loc) · 1.59 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
[flake8]
# leave 180 line length for historical/incremental pre-commit purposes
# rely on black/darker to enforce 88 standard
max-line-length = 180
# E122: Continuation line missing indentation or outdented
# E123: Closing bracket does not match indentation of opening bracket's line
# E126: Continuation line over-indented for hanging indent
# E127: Continuation line over-indented for visual indent
# E128: Continuation line under-indented for visual indent
# E203: Whitespace before ':' [required by black/darker]
# E722: Do not use bare except, specify exception instead
# E731: Do not assign a lambda expression, use a def
# W503: Line break occurred before a binary operator
# W504: Line break occurred after a binary operator
# W605: Invalid escape sequence 'x'
ignore = E122,E123,E126,E127,E128,E203,E731,E722,W503,W504,W605
exclude = build,conda_build/_version.py,tests,conda.recipe,.git,versioneer.py,conda,relative,benchmarks,.asv,docs,rever
[tool:pytest]
norecursedirs= tests/test-recipes .* *.egg* build dist conda.recipe
addopts =
--junitxml=junit.xml
--ignore setup.py
--ignore run_test.py
--cov-report term-missing
--tb native
--strict
--strict-markers
--durations=0
log_level = DEBUG
env =
PYTHONHASHSEED=0
markers =
serial: execute test serially (to avoid race conditions)
slow: execute the slow tests if active
sanity: execute the sanity tests
flaky: execute tests repeatedly
[versioneer]
VCS = git
versionfile_source = conda_build/_version.py
versionfile_build = conda_build/_version.py
tag_prefix =
parentdir_prefix = conda-build-
[bdist_wheel]
universal=1