#2064: fix layout of test so it passes in pipeline

This commit is contained in:
Czar Echavez
2023-11-23 22:28:08 +00:00
parent 2ce03e0262
commit 8aa743188f
2 changed files with 13 additions and 4 deletions

View File

@@ -74,6 +74,11 @@ def service(file_system) -> TestService:
)
@pytest.fixture(scope="function")
def service_class():
return TestService
@pytest.fixture(scope="function")
def application(file_system) -> TestApplication:
return TestApplication(
@@ -81,6 +86,11 @@ def application(file_system) -> TestApplication:
)
@pytest.fixture(scope="function")
def application_class():
return TestApplication
@pytest.fixture(scope="function")
def file_system() -> FileSystem:
return Node(hostname="fs_node").file_system