cc5614cf创建于 2025年11月18日历史提交
# pytest.ini
[pytest]
asyncio_mode = auto
asyncio_default_fixture_loop_scope = module
testpaths =
    test
markers =
    live_server: mark test as requiring a live server
addopts = -m "not live_server"
# Ignore temporary plugin/venv directories so third-party package tests are not collected
norecursedirs = 
    test/tmp 
    */venv/* 
    */site-packages/*
# to run the live_server tests explicitly, use:
# pytest -m live_server