24 lines
408 B
Python
24 lines
408 B
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
DATE_COLS: tuple[str, ...] = (
|
|
'VorgangsDatum',
|
|
'ErledigungsDatum',
|
|
'Arbeitsbeginn',
|
|
'ErstellungsDatum',
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope='session')
|
|
def raw_data_path():
|
|
pth_data = Path('./tests/Dummy_Dataset_N_1000.csv')
|
|
assert pth_data.exists()
|
|
|
|
return pth_data
|
|
|
|
|
|
@pytest.fixture(scope='session')
|
|
def raw_data_date_cols():
|
|
return DATE_COLS
|