about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrank Doepper <woffs@woffs.de>2024-06-04 09:26:08 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2024-07-02 23:51:12 +0200
commit7144d6241f02d171d25fba3edeaf15e0f2592105 (patch)
tree415bf0e03835797927c1b2cb46a557bcecc36673 /pkgs
parent28f8f3531ebdbea069995c20bd946a295699f275 (diff)
python3Packages.clustershell: remove blocking test nixpkgs-23.11-darwin
remove tests/TreeGatewayTest.py because it does not return.

apparently

    def wait(self):
        """wait for task/thread termination"""
        # can be blocked indefinitely if StreamWorker doesn't complete
        self.task.join()

does apply in nix sandbox

fixes #315146

(cherry picked from commit c217dc9717e9250e5cd05139e2dee3c8fa150e49)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/clustershell/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/clustershell/default.nix b/pkgs/development/python-modules/clustershell/default.nix
index 87fef1f934cfb..bbcef4e675f96 100644
--- a/pkgs/development/python-modules/clustershell/default.nix
+++ b/pkgs/development/python-modules/clustershell/default.nix
@@ -67,10 +67,9 @@ buildPythonPackage rec {
     rm tests/TaskDistantPdshMixin.py
     rm tests/TaskDistantPdshTest.py
     rm tests/TaskRLimitsTest.py
+    rm tests/TreeGatewayTest.py
 
     nosetests -v \
-      -e test_channel_ctl_shell_remote1 \
-      -e test_channel_ctl_shell_remote2 \
       -e test_fromall_grouplist \
       -e test_rank_placeholder \
       -e test_engine_on_the_fly_launch \
@@ -90,9 +89,6 @@ buildPythonPackage rec {
       -e testClushConfigSetRlimit  \
       -e testTimerInvalidateInHandler \
       -e testTimerSetNextFireInHandler \
-      -e test_channel_ctl_shell_mlocal1 \
-      -e test_channel_ctl_shell_mlocal2 \
-      -e test_channel_ctl_shell_mlocal3 \
       -e test_node_placeholder \
     tests/*.py
   '';