Skip to content

Commit 2bfd0e4

Browse files
committed
Note URL for py3.13
1 parent 8874074 commit 2bfd0e4

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/integration/test_basic.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
from ansible_dev_environment.utils import TermFeatures, subprocess_run
1515

1616

17-
@pytest.mark.skipif(sys.version_info > (3, 12), reason="pylibssh issues 3.13")
17+
@pytest.mark.skipif(
18+
sys.version_info > (3, 12),
19+
reason="pylibssh issues 3.13, https://github.com/ansible/pylibssh/issues/699",
20+
)
1821
def test_venv(
1922
capsys: pytest.CaptureFixture[str],
2023
tmp_path: Path,
@@ -149,7 +152,10 @@ def test_non_local(
149152
assert "├──jsonschema" in captured.out
150153

151154

152-
@pytest.mark.skipif(sys.version_info > (3, 12), reason="pylibssh issues 3.13")
155+
@pytest.mark.skipif(
156+
sys.version_info > (3, 12),
157+
reason="pylibssh issues 3.13, https://github.com/ansible/pylibssh/issues/699",
158+
)
153159
def test_requirements(
154160
capsys: pytest.CaptureFixture[str],
155161
tmp_path: Path,

0 commit comments

Comments
 (0)