forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (37 loc) · 1.01 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
[tool:pytest]
norecursedirs = .* *.egg* build dist conda/_vendor/* conda-env/*
addopts =
--ignore setup.py
--cov conda
--cov-report xml
--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 = E116,E121,E123,E126,E133,E226,E241,E242,E302,E704,E731
exclude = build/*,.tox/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda_env/compat.py
[flake8]
max-line-length = 99
ignore = E116,E121,E123,E126,E133,E226,E241,E242,E302,E704,E731
exclude = build/*,.tox/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda_env/compat.py
[coverage:run]
omit =
conda/_vendor/*
conda/gateways/adapters/ftp.py
conda/gateways/adapters/s3.py
conda-env/*
tests/*
[coverage:report]
exclude_lines =
pragma: no cover
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.: