Skip to content

Commit

Permalink
refac: Add output location to qa-docs logging. #2075
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Gonzalez committed Oct 26, 2021
1 parent dd3bfae commit 2bb06f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deps/wazuh_testing/wazuh_testing/qa_docs/doc_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def run(self):
qa-docs -I ../../tests/ -T test_cache -o /tmp -> It would be running as `single test mode`
creating `/tmp/test_cache.json`
"""
DocGenerator.LOGGER.info("Starting test documentation parsing")
DocGenerator.LOGGER.info('Starting test documentation parsing')

if self.conf.mode == Mode.DEFAULT:
DocGenerator.LOGGER.debug(f"Cleaning doc folder located in {self.conf.documentation_path}")
Expand All @@ -340,3 +340,5 @@ def run(self):

elif self.conf.mode == Mode.PARSE_TESTS:
self.parse_test_list()

DocGenerator.LOGGER.info(f"Run completed, documentation location: {self.conf.documentation_path}")

0 comments on commit 2bb06f1

Please sign in to comment.