fix file descriptor leak in cmd.run()

we were leaking pipes.
This commit is contained in:
Jörg Thalheim
2024-10-01 19:25:16 +02:00
parent f9a42831e4
commit 13aed0792e
2 changed files with 11 additions and 10 deletions

View File

@@ -35,6 +35,7 @@ log_format = "%(levelname)s: %(message)s\n %(pathname)s:%(lineno)d::%(func
addopts = "--cov . --cov-report term --cov-report html:.reports/html --no-cov-on-fail --durations 5 --color=yes --new-first -n auto" # Add --pdb for debugging
norecursedirs = "tests/helpers"
markers = ["impure", "with_core"]
filterwarnings = "default::ResourceWarning"
[tool.mypy]
python_version = "3.12"