21 lines
307 B
TOML
21 lines
307 B
TOML
[project]
|
|
name = "neotest-python"
|
|
version = "0.0.1"
|
|
dependencies = [
|
|
"pytest>=8.4.1",
|
|
]
|
|
|
|
[tools.black]
|
|
line-length = 120
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
multi_line_output = 3
|
|
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"error",
|
|
"ignore::pytest.PytestCollectionWarning",
|
|
"ignore:::pynvim[.*]",
|
|
]
|