We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7c1b52 commit b1aa1cbCopy full SHA for b1aa1cb
pytest.ini
setup.cfg
@@ -13,19 +13,31 @@ ignore = D001
13
convention = numpy
14
15
[tool:pytest]
16
-testpaths = tests
17
-
+testpaths =
+ tests
18
+ src/compas_cgal
19
norecursedirs =
20
migrations
21
python_files =
22
test_*.py
23
*_test.py
24
tests.py
25
26
addopts =
27
-ra
28
--strict
29
- --doctest-modules
30
--doctest-glob=\*.rst
31
--tb=short
+doctest_optionflags =
+ 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