nlp-recipes/tests/conftest.py

20 строки
740 B
Python
Исходник Ответственный История

Этот файл содержит неоднозначные символы Юникода!

Этот файл содержит неоднозначные символы Юникода, которые могут быть перепутаны с другими в текущей локали. Если это намеренно, можете спокойно проигнорировать это предупреждение. Используйте кнопку Экранировать, чтобы подсветить эти символы.

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# NOTE: This file is used by pytest to inject fixtures automatically. As it is explained in the documentation
# https://docs.pytest.org/en/latest/fixture.html:
# "If during implementing your tests you realize that you want to use a fixture function from multiple test files
# you can move it to a conftest.py file. You dont need to import the fixture you want to use in a test, it
# automatically gets discovered by pytest."
import pytest
from tests.notebooks_common import path_notebooks
@pytest.fixture(scope="module")
def notebooks():
folder_notebooks = path_notebooks()
# Path for the notebooks
paths = {}
return paths