Skip to content

Commit b1aa1cb

Browse files
committed
add to setup cfg
1 parent e7c1b52 commit b1aa1cb

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

pytest.ini

Lines changed: 0 additions & 3 deletions
This file was deleted.

setup.cfg

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,31 @@ ignore = D001
1313
convention = numpy
1414

1515
[tool:pytest]
16-
testpaths = tests
17-
16+
testpaths =
17+
tests
18+
src/compas_cgal
1819
norecursedirs =
1920
migrations
20-
2121
python_files =
2222
test_*.py
2323
*_test.py
2424
tests.py
25-
2625
addopts =
2726
-ra
2827
--strict
29-
--doctest-modules
3028
--doctest-glob=\*.rst
3129
--tb=short
30+
doctest_optionflags =
31+
NORMALIZE_WHITESPACE
32+
IGNORE_EXCEPTION_DETAIL
33+
ALLOW_UNICODE
34+
ALLOW_BYTES
35+
NUMBER
36+
37+
[isort]
38+
force_single_line = True
39+
line_length = 180
40+
known_first_party = compas_cgal
41+
default_section = THIRDPARTY
42+
forced_separate = test_compas_cgal
43+
skip = migrations, __init__.py

0 commit comments

Comments
 (0)