Made-With-ML/tests/code/conftest.py

14 lines
268 B
Python
Raw Normal View History

2023-07-26 13:53:11 +02:00
import pytest
from madewithml.data import CustomPreprocessor
@pytest.fixture
def dataset_loc():
return "https://raw.githubusercontent.com/GokuMohandas/Made-With-ML/main/datasets/dataset.csv"
@pytest.fixture
def preprocessor():
return CustomPreprocessor()