summary refs log tree commit diff
path: root/pkgs/development/tools/py-spy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/py-spy/default.nix')
-rw-r--r--pkgs/development/tools/py-spy/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/tools/py-spy/default.nix b/pkgs/development/tools/py-spy/default.nix
index 7f806df2259..86aceace84e 100644
--- a/pkgs/development/tools/py-spy/default.nix
+++ b/pkgs/development/tools/py-spy/default.nix
@@ -48,6 +48,9 @@ rustPlatform.buildRustPackage rec {
   checkFlags = [
     # thread 'python_data_access::tests::test_copy_string' panicked at 'called `Result::unwrap()` on an `Err`
     "--skip=python_data_access::tests::test_copy_string"
+  ] ++ lib.optionals (stdenv.hostPlatform.system == "x86_64-linux") [
+    # panicked at 'called `Result::unwrap()` on an `Err` value: failed to get os threadid
+    "--skip=test_thread_reuse"
   ];
 
   meta = with lib; {