-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconftest.py
30 lines (24 loc) · 976 Bytes
/
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
import os
from contextlib import contextmanager
import pytest
os.environ["TQDM_DISABLE"] = "1"
try:
from jumpstarter.common.utils import serve
from jumpstarter.config import ExporterConfigV1Alpha1DriverInstance
from jumpstarter.config.exporter import ExporterConfigV1Alpha1
except ImportError:
# some packages in the workspace does not depend on jumpstarter
pass
else:
@contextmanager
def run(config):
with serve(ExporterConfigV1Alpha1DriverInstance.from_str(config).instantiate()) as client:
yield client
@pytest.fixture(autouse=True)
def jumpstarter_namespace(doctest_namespace):
doctest_namespace["serve"] = serve
doctest_namespace["run"] = run
@pytest.fixture(autouse=True)
def tmp_config_path(tmp_path, monkeypatch):
monkeypatch.setenv("XDG_CONFIG_HOME", str(tmp_path / "client-config"))
monkeypatch.setattr(ExporterConfigV1Alpha1, "BASE_PATH", tmp_path / "exporters")