We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2099745 commit 2e0f6dcCopy full SHA for 2e0f6dc
tests/test_workspacebuilder.py
@@ -10,7 +10,7 @@
10
11
import libtmux
12
from libtmux import Window
13
-from libtmux.common import has_gte_version
+from libtmux.common import has_lt_version
14
from libtmux.test import retry_until, temp_session
15
from tmuxp import config, exc
16
from tmuxp.cli.load import load_plugins
@@ -1185,6 +1185,9 @@ def f():
1185
assert retry_until(f)
1186
1187
1188
+@pytest.mark.skipif(
1189
+ has_lt_version("2.9"), reason="needs option introduced in tmux >= 2.9"
1190
+)
1191
def test_layout_main_horizontal(session):
1192
yaml_config = test_utils.read_config_file("workspacebuilder/three_pane.yaml")
1193
0 commit comments