diff options
author | pawel.denst <pawel.denst@external.t-mobile.pl> | 2023-05-26 13:42:13 +0000 |
---|---|---|
committer | pawel.denst <pawel.denst@external.t-mobile.pl> | 2023-05-26 13:42:13 +0000 |
commit | 52a8347b34edf48126aff3121655920220fbb2b4 (patch) | |
tree | 0996f077d46f3e28e4b5c0b36c3bc76c6d1c6c89 | |
parent | b7d4808b153c8c7271d57d1fc3970f43368a7f07 (diff) |
Change STATUS_RESULTS_DIRECTORY in python-sdk tests
Change STATUS_RESULTS_DIRECTORY in python-sdk tests
Issue-ID: INT-2245
Signed-off-by: pawel.denst <pawel.denst@external.t-mobile.pl>
Change-Id: I3563d9896c556379afbd1eba83cdd750a887c8d0
-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" |