Add hatch test environment

This commit is contained in:
Chris Mayo 2022-09-05 19:24:01 +01:00
parent 84c241ef95
commit e91f9b4100

View file

@ -103,3 +103,17 @@ code = "make -C doc code"
html = "make -C doc html"
locale = "make -C doc locale"
man = "make -C doc man"
[tool.hatch.envs.test]
dependencies = [
"miniboa",
"parameterized",
"pdfminer.six",
"pyftpdlib",
"pyopenssl",
"pytest",
"pytest-xdist",
]
[tool.hatch.envs.test.scripts]
tests = "pytest -vra tests"