forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (35 loc) · 938 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
[tool:pytest]
norecursedirs = .* *.egg* build dist conda/_vendor/* conda_env/*
addopts =
--ignore setup.py
--cov conda
--tb native
--strict
--durations 8
doctest_optionflags =
NORMALIZE_WHITESPACE
IGNORE_EXCEPTION_DETAIL
ALLOW_UNICODE
markers =
slow: slow running tests
installed: tests that assume conda is pre-installed on PATH
[pep8]
max-line-length = 99
ignore = E126,E133,E226,E241,E242,E302,E704,E731,W503
exclude = build/*,.tox/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda_env/*
[flake8]
max-line-length = 99
ignore = E126,E133,E226,E241,E242,E302,E704,E731,W503
exclude = build/*,.tox/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda_env/*
[coverage:report]
omit =
*/site-packages/*
*\site-packages\*
conda/_vendor/*
conda_env/*
tests/*
exclude_lines =
pragma: no cover
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.: