File size: 307 Bytes
362a075 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
#
# SPDX-License-Identifier: Apache-2.0
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"
|