We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 681861e commit c5b45f1Copy full SHA for c5b45f1
tests/conftest.py
@@ -10,7 +10,7 @@
10
11
@pytest.fixture
12
def builder():
13
- ixx_services = Path(__file__).parent.parent.joinpath(Path("example/t01-services"))
+ ixx_services = Path(__file__).parent.joinpath(Path("t01-services"))
14
techui_path = ixx_services.joinpath("synoptic/techui.yaml")
15
16
b = Builder(techui_path)
@@ -40,9 +40,7 @@ def example_json_map():
40
41
42
def generator():
43
- synoptic_dir = Path(__file__).parent.parent.joinpath(
44
- Path("example/t01-services/synoptic")
45
- )
+ synoptic_dir = Path(__file__).parent.joinpath(Path("t01-services/synoptic"))
46
47
g = Generator(synoptic_dir)
48
tests/t01-services
@@ -0,0 +1 @@
1
+../example/t01-services
0 commit comments