ci(test): Test requiring pexpect.spawn cannot be run on Windows

This commit is contained in:
Roland Dobai
2025-09-16 19:01:16 +02:00
parent 9e8962c6cc
commit ef878f4d25

View File

@@ -8,6 +8,11 @@ import sys
import tempfile
import unittest
if sys.platform == 'win32':
import pytest
pytest.skip('pexpect.spawn is not available on Windows', allow_module_level=True)
else:
import pexpect