From 598004b838f266f94859dc296c339b959484a667 Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Tue, 3 Dec 2024 12:20:18 -0500 Subject: [PATCH] gh-127572: Temporarily skip failing test on s390x --- Lib/test/test_capi/test_structmembers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_capi/test_structmembers.py b/Lib/test/test_capi/test_structmembers.py index ae9168fc39243f..0430c169610fb4 100644 --- a/Lib/test/test_capi/test_structmembers.py +++ b/Lib/test/test_capi/test_structmembers.py @@ -1,5 +1,5 @@ import unittest -from test.support import import_helper +from test.support import import_helper, skip_on_s390x # Skip this test if the _testcapi module isn't available. import_helper.import_module('_testcapi') @@ -165,6 +165,7 @@ def test_inplace_string(self): self.assertRaises(TypeError, setattr, ts, "T_STRING_INPLACE", "s") self.assertRaises(TypeError, delattr, ts, "T_STRING_INPLACE") + @skip_on_s390x # gh-127572: test fails on s390x def test_char(self): ts = self.ts self.assertEqual(ts.T_CHAR, "c")