about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2023-07-11 17:21:07 +0200
committerGitHub <noreply@github.com>2023-07-11 17:21:07 +0200
commit896e40b2c68d08e0cc900d924ad2f54444217fcb (patch)
treea58346738cf53a3debac51c8d96e85460b96eb7d /pkgs
parent65dbea59a65bb92c4bb729ccda5e696c4fc0af55 (diff)
parentcfc32c250ae211494f2ebcda824ace108d5deee2 (diff)
downloadnixlib-896e40b2c68d08e0cc900d924ad2f54444217fcb.tar
nixlib-896e40b2c68d08e0cc900d924ad2f54444217fcb.tar.gz
nixlib-896e40b2c68d08e0cc900d924ad2f54444217fcb.tar.bz2
nixlib-896e40b2c68d08e0cc900d924ad2f54444217fcb.tar.lz
nixlib-896e40b2c68d08e0cc900d924ad2f54444217fcb.tar.xz
nixlib-896e40b2c68d08e0cc900d924ad2f54444217fcb.tar.zst
nixlib-896e40b2c68d08e0cc900d924ad2f54444217fcb.zip
Merge pull request #242240 from happysalada/pydevd_darwin_fix
python310Packages.pydevd: fix darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pydevd/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pydevd/default.nix b/pkgs/development/python-modules/pydevd/default.nix
index fe90cb70209f..cc79c43febd7 100644
--- a/pkgs/development/python-modules/pydevd/default.nix
+++ b/pkgs/development/python-modules/pydevd/default.nix
@@ -1,4 +1,5 @@
-{ lib
+{ stdenv
+, lib
 , buildPythonPackage
 , fetchFromGitHub
 , numpy
@@ -48,6 +49,9 @@ buildPythonPackage rec {
     # AssertionError pydevd_tracing.set_trace_to_threads(tracing_func) == 0
     "test_tracing_other_threads"
     "test_tracing_basic"
+  ] ++ lib.optionals stdenv.isDarwin [
+    "test_multiprocessing_simple"
+    "test_evaluate_exception_trace"
   ];
 
   pythonImportsCheck = [