[interpolatable_test] Don't test CFF2 on Python 3.8

It's mysteriously failing:
https://github.com/fonttools/fonttools/pull/3670#issuecomment-2445055495
This commit is contained in:
Behdad Esfahbod 2024-10-29 11:42:37 -07:00
parent b5373bf5d2
commit 2e8a67696f

View File

@ -94,6 +94,9 @@ class InterpolatableTest(unittest.TestCase):
otf_paths = self.get_file_list(self.tempdir, suffix) otf_paths = self.get_file_list(self.tempdir, suffix)
self.assertIsNone(interpolatable_main(otf_paths)) self.assertIsNone(interpolatable_main(otf_paths))
@pytest.mark.skipif(
sys.version_info[:2] == (3, 8), reason="Fails on Python 3.8 for unknown reasons"
)
def test_interpolatable_cff2(self): def test_interpolatable_cff2(self):
suffix = ".otf" suffix = ".otf"
ttx_dir = self.get_test_input("variable_ttx_interpolatable_cff2") ttx_dir = self.get_test_input("variable_ttx_interpolatable_cff2")