tests/functional2: fix non-working failsafe and resulting warning

Silly me forgot to add the dependency responsible for handling
`@pytest.mark.timeout` failsafes to kill a test if it takes too long,
which results in a warning when running f2.
This commit adds the required dependency and hence removes the warning

Change-Id: I281cad05bb0cf50208f72080cb2bfd8cbfb09d0c
This commit is contained in:
Commentator2.0
2025-12-02 19:52:38 +00:00
committed by Rutile
parent 06f987fb0c
commit 8353b3cc6a
+2
View File
@@ -243,6 +243,7 @@ stdenv.mkDerivation (finalAttrs: {
++ lib.optionals finalAttrs.doCheck [
(dontWrapPython p.pytest)
p.pytest-xdist
p.pytest-timeout
p.ruff
p.aiohttp
]
@@ -573,6 +574,7 @@ stdenv.mkDerivation (finalAttrs: {
# wrapped python instead of build inputs for its python inputs
(dontWrapPython p.pytest)
p.pytest-xdist
p.pytest-timeout
p.ruff
p.aiohttp
p.python-frontmatter