-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
51 lines (47 loc) · 935 Bytes
/
setup.cfg
File metadata and controls
51 lines (47 loc) · 935 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
46
47
48
49
50
51
[flake8]
max-line-length = 80
max-complexity = 8
statistics = true
# E123, E125 skipped as they are invalid PEP-8.
# I100 can't recognize order of import between dependencies and project groups.
# S101 can't distinguish production code from test code.
ignore = E123,E125,I100,S101
exclude =
.cache
.git
.idea
.pytest_cache
.tox
.venv
__pycache__
docs/conf.py
build
dist
htmlcov
node_modules
*.egg-info
*_backup.*
setup.py
[tool:pytest]
addopts = -v --durations=5
python_files = tests/*.py
console_output_style = classic
env =
FLASK_ENV=testing
DEBUG=0
TESTING=1
[coverage:run]
source = acid/
omit = */tests/*
[coverage:report]
show_missing = yes
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
[coverage:html]
directory = htmlcov
title = ACID test coverage