-
Notifications
You must be signed in to change notification settings - Fork 29
/
conftest.py
87 lines (76 loc) · 3.11 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Copyright Swiss Data Science Center (SDSC). A partnership between
# École Polytechnique Fédérale de Lausanne (EPFL) and
# Eidgenössische Technische Hochschule Zürich (ETHZ).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Pytest configuration."""
import importlib
import os
CLI_FIXTURE_LOCATIONS = [
"tests.cli.fixtures.cli_gateway",
"tests.cli.fixtures.cli_integration_datasets",
"tests.cli.fixtures.cli_kg",
"tests.cli.fixtures.cli_old_projects",
"tests.cli.fixtures.cli_projects",
"tests.cli.fixtures.cli_providers",
"tests.cli.fixtures.cli_runner",
"tests.cli.fixtures.cli_workflow",
]
CORE_FIXTURE_LOCATIONS = [
"tests.core.fixtures.core_database",
"tests.core.fixtures.core_datasets",
"tests.core.fixtures.core_models",
"tests.core.fixtures.core_plugins",
"tests.core.fixtures.core_projects",
"tests.core.fixtures.core_serialization",
"tests.core.fixtures.core_workflow",
]
GLOBAL_FIXTURE_LOCATIONS = [
"tests.fixtures.common",
"tests.fixtures.communication",
"tests.fixtures.config",
"tests.fixtures.domain_models",
"tests.fixtures.repository",
"tests.fixtures.runners",
"tests.fixtures.session",
"tests.fixtures.templates",
]
SERVICE_FIXTURE_LOCATIONS = [
"tests.service.fixtures.service_cache",
"tests.service.fixtures.service_client",
"tests.service.fixtures.service_controllers",
"tests.service.fixtures.service_data",
"tests.service.fixtures.service_endpoints",
"tests.service.fixtures.service_integration",
"tests.service.fixtures.service_jobs",
"tests.service.fixtures.service_projects",
]
INCLUDE_FIXTURES = GLOBAL_FIXTURE_LOCATIONS + CORE_FIXTURE_LOCATIONS + CLI_FIXTURE_LOCATIONS + SERVICE_FIXTURE_LOCATIONS
def pytest_configure(config):
"""Run global setup before executing tests."""
for _fixture in INCLUDE_FIXTURES:
module = importlib.import_module(_fixture)
globals().update(
{n: getattr(module, n) for n in module.__all__}
if hasattr(module, "__all__")
else {k: v for (k, v) in module.__dict__.items() if not k.startswith("_")}
)
os.environ["RENKU_SKIP_MIN_VERSION_CHECK"] = "1"
os.environ["RENKU_DISABLE_VERSION_CHECK"] = "1"
# NOTE: Set an env var during during tests to mark that Renku is running in a test session.
os.environ["RENKU_RUNNING_UNDER_TEST"] = "1"
def pytest_unconfigure(config):
"""Hook that is called by pytest after all tests are executed."""
os.environ.pop("RENKU_SKIP_MIN_VERSION_CHECK", None)
os.environ.pop("RENKU_DISABLE_VERSION_CHECK", None)
os.environ.pop("RENKU_RUNNING_UNDER_TEST", None)