We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19e3420 commit 222755fCopy full SHA for 222755f
scripts/gha/desktop_tester.py
@@ -131,7 +131,11 @@ def run(self):
131
self.logs = f.read()
132
test_running = "All tests finished" not in self.logs
133
open_process.kill()
134
- logging.info("Test result: %s", self.logs)
+ if platform.system() == 'Linux':
135
+ # Linux seems to have a problem printing out too much information, so truncate it
136
+ logging.info("Test result: %s (Log might be truncated)", self.logs[:64000])
137
+ else:
138
+ logging.info("Test result: %s", self.logs)
139
logging.info("Finished running %s", self.testapp_path)
140
141
0 commit comments