How to show plain text logs in the HyperExecute logs

How to show plain text logs in the HyperExecute logs and output the pretty formatted JSON, which is stored as an artifact?

Hello Joe,

To configure your test runner command, you can use the following parameters in your YAML configuration:

testRunnerCommand: >
  python -m behave
  $test
  -f json.pretty -o reports/test_report.json
  -f plain

This command will effectively run your tests using the Behave framework, generate a JSON report in a “test_report.json” file, and display the results in a plain format.

If you have any more questions or need assistance with your test configuration, feel free to ask. We’re here to help!