Spaces:
Sleeping
Sleeping
File size: 590 Bytes
8077a04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | [pytest]
addopts = ["--import-mode=importlib"]
strict = true
pythonpath = ["packages/ltx-trainer/tests"]
norecursedirs = ["packages/ltx-bench/src"]
testpaths = [
"packages/ltx-core",
"packages/ltx-pipelines",
"packages/ltx-trainer",
"packages/ltx-bench",
]
markers = [
"e2e: mark a test as end-to-end. End to end tests run only on pushes to the main branch.",
"bench: mark a test as a benchmark. Benchmarks run only when --bench is passed.",
"mgpu: mark a test as running on multi-GPU machines. Excluded from standard CI, runs only in the mgpu-e2e workflow.",
]
|