Lines Matching +full:pytest +full:- +full:version
22 import pytest
62 elif line.startswith("- "):
163 with pytest.raises(GlifLibError, match=expected_message):
216 # make sure filenames are unique even on case-insensitive filesystems
241 assert s.startswith(XML_DECLARATION % "UTF-8")
244 s = b"""<?xml version='1.0' encoding='UTF-8'?>
245 <!-- a comment -->
249 <!-- another comment -->
268 with pytest.raises(GlifLibError, match="GLIF contains invalid XML"):
272 s = """<?xml version='1.0' encoding='utf-8'?>
279 with pytest.raises(UnsupportedGLIFFormat):
282 with pytest.raises(UnsupportedGLIFFormat):
291 assert "Assuming the latest supported version" in caplog.text
294 s = """<?xml version='1.0' encoding='utf-8'?>
308 with pytest.raises(
313 with pytest.raises(GlifLibError, match="Forbidden GLIF format version"):
320 s = """<?xml version='1.0' encoding='utf-8'?>
332 with pytest.raises(GlifLibError, match="Required y attribute"):
335 with pytest.raises(GlifLibError, match="Required y attribute"):
340 with pytest.raises(UnsupportedUFOFormat):
342 with pytest.raises(UnsupportedUFOFormat):
359 with pytest.raises(UnsupportedGLIFFormat):
363 with pytest.raises(
365 match="Unsupported GLIF format version .*for UFO format version",