InnerEye-DeepLearning/conftest.py

44 строки
1.7 KiB
Python
Исходник Обычный вид История

2020-07-28 22:00:35 +03:00
# ------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.
# ------------------------------------------------------------------------------------------
"""
Global PyTest configuration -- used to define global fixtures for the entire test suite
DO NOT RENAME THIS FILE: (https://docs.pytest.org/en/latest/fixture.html#sharing-a-fixture-across-tests-in-a-module
-or-class-session)
"""
import uuid
from typing import Generator
import pytest
from InnerEye.Common.fixed_paths import add_submodules_to_path
from InnerEye.Common.fixed_paths_for_tests import TEST_OUTPUTS_PATH
from InnerEye.Common.output_directories import OutputFolderForTests, remove_and_create_folder
# This needs to be right at the start of conftest, so that already test collection has access to all submodules
add_submodules_to_path()
2020-07-28 22:00:35 +03:00
@pytest.fixture(autouse=True, scope='session')
2020-07-28 22:00:35 +03:00
def test_suite_setup() -> Generator:
# create a default outputs root for all tests
remove_and_create_folder(TEST_OUTPUTS_PATH)
2020-07-28 22:00:35 +03:00
# run the entire test suite
yield
@pytest.fixture
def test_output_dirs() -> Generator:
"""
Fixture to automatically create a random directory before executing a test and then
removing this directory after the test has been executed.
"""
# create dirs before executing the test
root_dir = TEST_OUTPUTS_PATH / str(uuid.uuid4().hex)
remove_and_create_folder(root_dir)
2020-07-28 22:00:35 +03:00
print(f"Created temporary folder for test: {root_dir}")
# let the test function run
yield OutputFolderForTests(root_dir=root_dir)