-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathsetup.cfg
More file actions
26 lines (22 loc) · 561 Bytes
/
setup.cfg
File metadata and controls
26 lines (22 loc) · 561 Bytes
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
[metadata]
license_file = LICENSE
[coverage:run]
plugins = scripts.coverage
source = csimdjson
omit =
# Coverage is picking up the Cython memoryview implementation, which
# causes errors when generating reports.
stringsource
[coverage:report]
exclude_lines =
pragma: no cover
[tool:pytest]
required_plugins=pytest-benchmark
[flake8]
filename = *.pyx,*.pxd,*.pxi,*.py
per-file-ignores =
*.pyx:E211,E901,E999,E225,E226,E227,W504
*.pyi:E211,E901,E999,E225,E226,E227,W504
*.pxd:E211,E901,E999,E225,E226,E227,W504
exclude =
venv