martin-g commented on a change in pull request #1552:
URL: https://github.com/apache/avro/pull/1552#discussion_r809983937
##########
File path: lang/py/avro/test/test_datafile_interop.py
##########
@@ -37,11 +37,16 @@ def test_interop(self) -> None:
for filename in _INTEROP_DATA_DIR.iterdir():
self.assertGreater(os.stat(filename).st_size, 0)
base_ext = filename.stem.split("_", 1)
- if len(base_ext) < 2 or base_ext[1] not in
avro.codecs.KNOWN_CODECS:
+ if len(base_ext) > 1 and base_ext[1] not in
avro.codecs.KNOWN_CODECS:
Review comment:
Until the Python interop tests were skipping the `null` codec files.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]