haystack/e2e/conftest.py
Massimiliano Pippi 10c675d534
chore: add license header to all modules (#7675)
* add license header to modules
* check license header at linting time
2024-05-09 13:40:36 +00:00

17 lines
307 B
Python

# 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"