z-image-studio / pyproject.toml
techfreakworm's picture
test: l3 gpu smoke (t2i base/turbo + controlnet + upscale)
5ac741c unverified
raw
history blame contribute delete
437 Bytes
[tool.ruff]
target-version = "py311"
line-length = 120
extend-exclude = [".venv", "build", "dist", ".superpowers"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "RUF"]
ignore = ["E501"] # handled by formatter
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "-m 'not gpu'"
markers = [
"gpu: requires a GPU (CUDA or MPS); skipped by default",
]