From: Aki Tuomi Date: Thu, 21 Mar 2024 17:41:56 +0000 (+0200) Subject: tasks: Dump all remotebackend logs, including server logs X-Git-Tag: rec-5.1.0-alpha1~60^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6455278c95348003dfa56f9a329d5586049af02d;p=thirdparty%2Fpdns.git tasks: Dump all remotebackend logs, including server logs --- diff --git a/tasks.py b/tasks.py index f0b3cb8a1e..f3144ed2c0 100644 --- a/tasks.py +++ b/tasks.py @@ -647,7 +647,7 @@ def ci_auth_run_unit_tests(c): res = c.run('make check', warn=True) if res.exited != 0: c.run('cat pdns/test-suite.log', warn=True) - c.run('cat modules/remotebackend/test-suite.log', warn=True) + c.run('more modules/remotebackend/*.log', warn=True) raise UnexpectedExit(res) @task