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