Пример #1
0
 def is_compatible(file_path):
     return is_eventio(file_path)
Пример #2
0
 def is_compatible(file_path):
     return is_eventio(Path(file_path).expanduser())
Пример #3
0
def test_is_eventio_zstd():
    from eventio.file_types import is_eventio

    pytest.importorskip('zstandard')
    assert is_eventio(testfile_zstd)
Пример #4
0
 def is_compatible(file_path):
     return is_eventio(file_path)
Пример #5
0
def test_is_eventio():
    from eventio.file_types import is_eventio

    assert is_eventio(testfile)
    assert is_eventio(testfile_gz)