-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpytest.ini
More file actions
35 lines (33 loc) · 707 Bytes
/
Copy pathpytest.ini
File metadata and controls
35 lines (33 loc) · 707 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
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
asyncio_mode = auto
markers =
real_permissions: run with the authorization stubs disabled
[coverage:run]
source = src
omit =
*/__pycache__/*
*/venv/*
*/test/*
*/tests/*
setup.py
src/api/websockets.py
src/startup.py
src/api/db/migration.py
src/api/db/migrate_notion_blocks.py
src/api/routes/ai.py
src/api/main.py
src/api/routes/integration.py
src/api/config.py
src/api/bq/cron.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise NotImplementedError
if __name__ == .__main__.:
pass
raise ImportError