mirror of
https://github.com/jxxghp/MoviePilot-Plugins.git
synced 2026-06-03 23:16:49 +00:00
12 lines
600 B
INI
12 lines
600 B
INI
[pytest]
|
||
# 仅在仓库根 tests/ 下发现用例;插件目录(plugins/、plugins.v2/)不再承载测试
|
||
testpaths = tests
|
||
python_files = test_*.py
|
||
# unittest.TestCase 子类无论命名都会被收集;此项额外兼容将来可能出现的纯函数式测试类
|
||
python_classes = *Test Test*
|
||
python_functions = test_*
|
||
# v1/v2 必须分会话运行(同名插件包冲突);marker 由 conftest 按目录自动打,便于 -m 选择
|
||
markers =
|
||
v1: v1 插件(plugins/)单测,需与 v2 分独立会话运行
|
||
v2: v2 插件(plugins.v2/)单测,需与 v1 分独立会话运行
|