croconut / godot-tester

A Github Action to handle testing Godot applications with GUT
MIT License
36 stars 14 forks source link

How to disable logging for asserts? #39

Closed phil-hudson closed 1 year ago

phil-hudson commented 1 year ago

Currently in my test suite i have about 7k asserts (integration testing).

The problem is the gut print output (I believe) is crashing the runner, so the task gets terminated early.

Is there anyway to disable output apart from failures?

Thanks

Example below:

In this example, I turned off assert statement comments to reduce the amount of lines printed - previously it would get stuck at around 600, now we are up to over 2k.

image

phil-hudson commented 1 year ago

Ignore me, trick was to swap the default gut_config file log_level to 1 from 3