pyproject.toml (24 lines of code) (raw):
[tool.black]
line-length = 119
target-version = ['py37']
[tool.ruff]
# Never enforce `E501` (line length violations).
ignore = ["C901", "E501", "E741", "W605"]
select = ["C", "E", "F", "I", "W"]
line-length = 119
# Ignore import violations in all `__init__.py` files.
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403", "F811"]
[tool.ruff.isort]
lines-after-imports = 2
known-first-party = ["optimum"]
[tool.pytest.ini_options]
markers = [
"gpu_test",
"cuda_ep_test",
"trt_ep_test",
"rocm_ep_test",
"run_in_series",
"run_slow",
"quantization",
]