Exemplo n.º 1
0
 def is_compatible(file_path):
     return is_eventio(file_path)
Exemplo n.º 2
0
 def is_compatible(file_path):
     return is_eventio(Path(file_path).expanduser())
Exemplo n.º 3
0
def test_is_eventio_zstd():
    from eventio.file_types import is_eventio

    pytest.importorskip('zstandard')
    assert is_eventio(testfile_zstd)
Exemplo n.º 4
0
 def is_compatible(file_path):
     return is_eventio(file_path)
Exemplo n.º 5
0
def test_is_eventio():
    from eventio.file_types import is_eventio

    assert is_eventio(testfile)
    assert is_eventio(testfile_gz)