-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.cfg
45 lines (38 loc) · 918 Bytes
/
setup.cfg
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
[flake8]
ignore=E501,W503,E226,E252,W504,E203,E231
[run]
omit = setup.py
[report]
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == '__main__':
if __name__ == "__main__":
omit =
# Impractical for unit tests, but covered in integration tests
irrd/daemon/main.py
irrd/server/http/app.py
irrd/server/graphql/schema_builder.py
irrd/server/http/server.py
irrd/storage/alembic/*
irrd/scripts/query_qa_comparison.py
irrd/scripts/database_upgrade.py
irrd/scripts/database_downgrade.py
irrd/scripts/load_test.py
irrd/integration_tests/*
irrd/vendor/*
[tool:pytest]
log_level=DEBUG
asyncio_mode=auto
[mypy]
ignore_missing_imports = True
install_types = True
non_interactive = True
exclude = irrd/storage/alembic/*
[rstcheck]
report=warning