Files
wehub-resource-sync 2aaeece67c
Pipelines-Test / Pipelines-Test (push) Waiting to run
Codestyle Check / Lint (push) Has been cancelled
Codestyle Check / Check bypass (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:37:14 +08:00

42 lines
885 B
TOML

[tool.isort]
profile = 'black'
known_third_party = ["paddle"]
skip = ['paddlenlp/transformers/__init__.py']
[tool.black]
line-length = 119
target_version = ['py35', 'py36', 'py37', 'py38', 'py39', 'py310']
exclude = ['.flake8']
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q "
pythonpath = ["."]
testpaths = [
"tests/data",
"tests/dataaug",
"tests/datasets",
"tests/experimental",
"tests/generation",
"tests/layers",
"tests/metrics",
"tests/pose",
"tests/ops",
"tests/trainer",
"tests/transformers",
"tests/peft",
"tests/prompt",
"tests/mergekit",
# "tests/taskflow", TODO (paddle 2.5.1 breaks this test suite, debug later)
"tests/utils",
"tests/longlora",
]
python_files = [
"test.py",
"test_*.py"
]
filterwarnings = [
"ignore::UserWarning",
'ignore::DeprecationWarning',
]