Skip to content

Commit f842600

Browse files
committed
tests: remove obsolete < 3.2 skipif markers
why: tmux < 3.2 is now deprecated (TMUX_SOFT_MIN_VERSION = "3.2a"). All version skipif markers for < 3.0, < 3.2, <= 3.1, and < 2.9 are now obsolete since all supported tmux versions have these features. what: - Remove skipif(has_lt_version("3.0")) from environment tests - Remove skipif(has_lt_version("3.2")) from window direction tests - Remove skipif(has_lt_version("2.9")) from resize tests - Remove skipif(has_lte_version("3.1")) from zoom tests - Clean up unused imports (has_lt_version, has_lte_version)
1 parent 14a0aba commit f842600

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/legacy_api/test_window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import pytest
1111

1212
from libtmux import exc
13-
from libtmux.common import has_gte_version, has_lt_version, has_version
13+
from libtmux.common import has_gte_version, has_version
1414
from libtmux.constants import OptionScope
1515
from libtmux.pane import Pane
1616
from libtmux.server import Server

0 commit comments

Comments
 (0)