From bdb69722a784a902ff13ea96dd9daa6b2ef0d737 Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Mon, 23 Sep 2024 18:12:26 +0300 Subject: [PATCH] Added/Updated tests\bugs\gh_8255_test.py: added skipif(platform.system() = 'Windows' according to ticket note about IFDEF WIN_NT. --- tests/bugs/gh_8255_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/bugs/gh_8255_test.py b/tests/bugs/gh_8255_test.py index d779589e..bcba0f9e 100644 --- a/tests/bugs/gh_8255_test.py +++ b/tests/bugs/gh_8255_test.py @@ -32,6 +32,7 @@ act = python_act('db', substitutions=[('[ \t]+', ' '), ('After line \\d+.*', '') tmp_sql = temp_file('tmp_8255_non_ascii_ddl.sql') +@pytest.mark.skipif(platform.system() != 'Windows', reason='See ticket note.') @pytest.mark.version('>=4.0.6') def test_1(act: Action, tmp_sql: Path, capsys):