14 lines
268 B
Python
14 lines
268 B
Python
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()
|