Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/py-polars/tests/unit/streaming/conftest.py
6939 views
1
from pathlib import Path
2
3
import pytest
4
5
6
@pytest.fixture
7
def io_files_path() -> Path:
8
return Path(__file__).parent.parent / "io" / "files"
9
10