mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
- Add 'asyncio' marker to pytest configuration - Simplify LLM fixture by removing FakeListChatModel - Update logging and code style in conftest.py
30 lines
599 B
INI
30 lines
599 B
INI
[pytest]
|
|
markers =
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
|
integration: marks tests as integration tests
|
|
unit: marks tests as unit tests
|
|
asyncio: mark tests as async tests
|
|
|
|
testpaths =
|
|
tests
|
|
|
|
python_files =
|
|
test_*.py
|
|
*_test.py
|
|
|
|
addopts =
|
|
-v
|
|
--strict-markers
|
|
--tb=short
|
|
|
|
asyncio_mode = auto
|
|
asyncio_default_fixture_loop_scope = function
|
|
log_cli = true
|
|
; log_cli_level = DEBUG
|
|
log_cli_format = %(levelname)-8s [%(name)s] %(message)s
|
|
filterwarnings =
|
|
ignore::pytest.PytestDeprecationWarning
|
|
ignore::DeprecationWarning
|
|
|
|
log_level = INFO
|