diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-10-08 13:46:50 +0200 |
---|---|---|
committer | mrichomme <morgan.richomme@orange.com> | 2020-10-08 15:46:29 +0200 |
commit | 5ef0bbbda90428378a08d416481b90047f5ba870 (patch) | |
tree | 033870a5864fc9a7f2d172bb5cbf4c29660e4302 /src/onaptests/scenario | |
parent | d1d44781c7d03c8794dd626184f77d9836264212 (diff) |
Add reporting page creation in pythonsdk-tests
Issue-ID: TEST-269
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: I4ab0a2f7a1a1e98ae5d05166c6aa06212d24eeae
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to 'src/onaptests/scenario')
-rw-r--r-- | src/onaptests/scenario/basic_vm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/onaptests/scenario/basic_vm.py b/src/onaptests/scenario/basic_vm.py index 15a6f5d..48fd169 100644 --- a/src/onaptests/scenario/basic_vm.py +++ b/src/onaptests/scenario/basic_vm.py @@ -42,7 +42,7 @@ class BasicVm(testcase.TestCase): self.__logger.info("No cleanup requested. Test completed.") self.result = 100 - def clean(self): """Clean Additional resources if needed.""" - pass + self.__logger.info("Generate Test report") + self.test.reports_collection.generate_report() |