forked from scikit-build/scikit-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
21 lines (19 loc) · 672 Bytes
/
setup.cfg
File metadata and controls
21 lines (19 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[bdist_wheel]
universal = 1
[tool:pytest]
testpaths = tests
addopts = -v --cov --cov-report xml -ra --strict-markers --showlocals
norecursedirs = _skbuild
markers =
fortran: fortran testing
[flake8]
max-line-length = 120
# Whether to display the pep8 instructions on failure (can be quite verbose)
show-pep8 = False
# Whether to show source code for each failure
show-source = True
# Maximum cyclomatic complexity allowed
max-complexity = 18
format = pylint
exclude = .git,.idea,.eggs,__pycache__,.tox,docs/conf.py,_skbuild,build,docs/cmake.py,versioneer.py,_version.py,.nox,venv,.venv
ignore = E203, E231, E501, E722, W503, B950, B014, W504, E123, E126, E226, E121