mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #221506 from ethinx/pr-libtmux
python3Packages.libtmux: fix disabledTestPaths in darwin
This commit is contained in:
commit
5ee0f25428
@ -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";
|
||||
|
@ -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" ];
|
||||
|
Loading…
Reference in New Issue
Block a user