forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
62 lines (56 loc) · 1.69 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
60
61
62
[tool:pytest]
minversion = 3.0
testpaths = conda tests
norecursedirs = .* *.egg* build dist env ve conda/_vendor/* conda_env/*
usefixtures = suppress_resource_warning
addopts =
--ignore setup.py
--ignore conda/__main__.py
--ignore conda/_vendor
--ignore tests/conda_env/specs/test_binstar.py
--ignore tests/conda_env/support
--ignore tests/conda_env/utils/test_uploader.py
--tb native
--strict
--durations 16
--doctest-modules
doctest_optionflags =
NORMALIZE_WHITESPACE
IGNORE_EXCEPTION_DETAIL
ALLOW_UNICODE
markers =
integration: integration tests that usually require an internet connect
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,E722,W503
exclude = build/*,.tox/*,env/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda/common/compat.py,conda_env/compat.py
[flake8]
max-line-length = 99
ignore = E126,E133,E226,E241,E242,E302,E704,E731,E722,W503
exclude = build/*,.tox/*,env/*,tests/*,ve/*,*/_vendor/*,conda/compat.py,conda/common/compat.py,conda_env/compat.py
[coverage:report]
show_missing = True
sort = Miss
skip_covered = True
omit =
*/site-packages/*
*\site-packages\*
conda/_vendor/*
conda/console.py
conda/cli/activate.py
conda/cli/main_package.py
conda/exports.py
conda/gateways/connection/adapters/ftp.py
conda/gateways/connection/adapters/s3.py
conda_env/*
tests/*
exclude_lines =
pragma: no cover
pragma: py$PYTHON_MAJOR_VERSION no cover
pragma: $TEST_PLATFORM no cover
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
def __repr__