mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-03 15:09:59 +00:00
12 lines
195 B
Python
12 lines
195 B
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
from haystack.testing.test_utils import set_all_seeds
|
|
|
|
set_all_seeds(0)
|
|
|
|
|
|
@pytest.fixture
|
|
def samples_path():
|
|
return Path(__file__).parent / "samples"
|