forked from compas-dev/compas_fab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (42 loc) · 835 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
42
43
44
45
46
47
48
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 180
exclude =
.git,
__pycache__,
docs,
build,
temp,
dist,
src/compas_fab/backends/vrep/remote_api/*,
src/compas_fab/ghpython/path_planning.py
[pydocstyle]
convention = numpy
add-ignore = D100
[tool:pytest]
testpaths = src tests
norecursedirs =
migrations
python_files =
test_*.py
*_test.py
tests.py
addopts =
-ra
--strict
--doctest-glob=\*.rst
--tb=short
doctest_optionflags= NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ALLOW_UNICODE ALLOW_BYTES
filterwarnings =
ignore::DeprecationWarning
[isort]
force_single_line = True
line_length = 180
known_first_party = compas_fab
default_section = THIRDPARTY
forced_separate = test_compas_fab
not_skip = __init__.py
skip = migrations
[coverage:run]
branch = True