Skip to content

Commit

Permalink
pythongh-127572: Temporarily skip failing test on s390x
Browse files Browse the repository at this point in the history
  • Loading branch information
colesbury committed Dec 3, 2024
1 parent 8ba9f5b commit 598004b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/test/test_capi/test_structmembers.py
Original file line number Diff line number Diff line change
@@ -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')
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 598004b

Please sign in to comment.