forked from GetStream/Vision-Agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
24 lines (24 loc) · 710 Bytes
/
Copy pathpytest.ini
File metadata and controls
24 lines (24 loc) · 710 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
[pytest]
testpaths = tests plugins
python_files = test_*.py
python_functions = test_*
python_classes = Test*
asyncio_mode = auto
markers =
integration: marks tests as integration tests (deselect with '-m "not integration"')
unit: marks tests as unit tests
skip_blockbuster: skips blockbuster blocking call detection for tests with unavoidable blocking calls
addopts =
-v
--tb=short
--strict-markers
--timeout=60
--import-mode=importlib
# Avoid touching .env files during collection phase for better sandboxing
--ignore=.env
--ignore=.env.local
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
log_cli = true
log_cli_level = INFO