-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
46 lines (42 loc) · 832 Bytes
/
setup.cfg
File metadata and controls
46 lines (42 loc) · 832 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# E203: whitespace before ':'
# W503: line break before binary operator
# C812–C816: trailing comma rules (ignored)
[flake8]
max-line-length = 88
ignore =
E203,
W503,
C812,
C813,
C816
exclude =
.git,
.venv,
__pycache__,
[tool:pytest]
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
DJANGO_SETTINGS_MODULE = chesser.settings
python_files = tests.py test_*.py *_tests.py
norecursedirs = .* __pycache__ ve
addopts =
--cov=.
--cov-report=term-missing
-q
--color=yes
--no-cov-on-fail
--cov-branch
--verbose
--cov-report=lcov:lcov.info
[coverage:run]
omit =
*/migrations/*.py
*/asgi.py
*/wsgi.py
*/get_noto_emoji.py
*/manage.py
*/chesser_cleanup.py
[coverage:report]
show_missing = true
skip_covered = true
sort = cover