Unverified Commit 5ee0f254 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #221506 from ethinx/pr-libtmux

python3Packages.libtmux: fix disabledTestPaths in darwin
parents 5bccb04d f82c2fb2
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -4658,6 +4658,12 @@
    github = "ethindp";
    githubId = 8030501;
  };
  ethinx = {
    email = "eth2net@gmail.com";
    github = "ethinx";
    githubId = 965612;
    name = "York Wong";
  };
  Etjean = {
    email = "et.jean@outlook.fr";
    github = "Etjean";
+5 −1
Original line number Diff line number Diff line
@@ -43,10 +43,14 @@ buildPythonPackage rec {
  disabledTests = [
    # Fail with: 'no server running on /tmp/tmux-1000/libtmux_test8sorutj1'.
    "test_new_session_width_height"
  ] ++ lib.optionals stdenv.isDarwin [
    # tests/test_pane.py:113: AssertionError
    "test_capture_pane_start"
  ];

  disabledTestPaths = lib.optionals stdenv.isDarwin [
    "test_test.py"
    "tests/test_test.py"
    "tests/legacy_api/test_test.py"
  ];

  pythonImportsCheck = [ "libtmux" ];