diff options
-rw-r--r-- | src/onaptests/configuration/status_settings.py | 2 | ||||
-rw-r--r-- | src/onaptests/steps/cloud/check_status.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/onaptests/configuration/status_settings.py b/src/onaptests/configuration/status_settings.py index 06e29fd..ca25e4f 100644 --- a/src/onaptests/configuration/status_settings.py +++ b/src/onaptests/configuration/status_settings.py @@ -4,4 +4,4 @@ from .settings import * # pylint: disable=W0614 SERVICE_NAME = "Status Check" SERVICE_DETAILS = "Checks status of all k8s resources in the selected namespace" SERVICE_COMPONENTS = "ALL" -STATUS_RESULTS_DIRECTORY = "src/"
\ No newline at end of file +STATUS_RESULTS_DIRECTORY = "/tmp"
\ No newline at end of file diff --git a/src/onaptests/steps/cloud/check_status.py b/src/onaptests/steps/cloud/check_status.py index 101882e..8a01662 100644 --- a/src/onaptests/steps/cloud/check_status.py +++ b/src/onaptests/steps/cloud/check_status.py @@ -116,7 +116,7 @@ class CheckNamespaceStatusStep(BaseStep): super().__init__(cleanup=cleanup) if settings.STATUS_RESULTS_DIRECTORY: - self.res_dir = f"{settings.STATUS_RESULTS_DIRECTORY}/kubernetes-status" + self.res_dir = f"{settings.STATUS_RESULTS_DIRECTORY}" else: self.res_dir = f"{testcase.TestCase.dir_results}/kubernetes-status" |