From 4f6020baa6f23fc4fb411dec66b10e71e5db7f4f Mon Sep 17 00:00:00 2001 From: Tom Hunze Date: Sat, 30 Aug 2025 23:49:19 +0200 Subject: [PATCH] python313Packages.i3ipc: improve test stability --- pkgs/development/python-modules/i3ipc/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/i3ipc/default.nix b/pkgs/development/python-modules/i3ipc/default.nix index c3458c3bc98f..599966b5e5bd 100644 --- a/pkgs/development/python-modules/i3ipc/default.nix +++ b/pkgs/development/python-modules/i3ipc/default.nix @@ -7,6 +7,7 @@ xlib, fontconfig, pytestCheckHook, + writableTmpDirAsHomeHook, pytest-asyncio, pytest-timeout, pytest-xvfb, @@ -46,6 +47,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook + writableTmpDirAsHomeHook pytest-asyncio pytest-timeout pytest-xvfb @@ -58,6 +60,9 @@ buildPythonPackage rec { # Timeout "test/test_shutdown_event.py::TestShutdownEvent::test_shutdown_event_reconnect" "test/aio/test_shutdown_event.py::TestShutdownEvent::test_shutdown_event_reconnect" + # Flaky + "test/test_window.py::TestWindow::test_detailed_window_event" + "test/aio/test_workspace.py::TestWorkspace::test_workspace" ]; pythonImportsCheck = [ "i3ipc" ];