X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Frobot_output_parser_publish.py;h=c3390cbe1efc9596bd8175f9d0055533bd61143c;hp=92038b59038d24e5f5cc072f7283b173b9e1594d;hb=131efb9019691347a1a29796fa7f8f192f2bdf9a;hpb=13809a4ee66ec5e9c92ac3600805251791dfcd2b diff --git a/resources/tools/robot_output_parser_publish.py b/resources/tools/robot_output_parser_publish.py index 92038b5903..c3390cbe1e 100755 --- a/resources/tools/robot_output_parser_publish.py +++ b/resources/tools/robot_output_parser_publish.py @@ -136,7 +136,8 @@ class ExecutionChecker(ResultVisitor): elif self.formatting == 'wiki': sys.stdout.write('|-'+'\n') sys.stdout.write('|'+test.name+'\n') - sys.stdout.write('|'+test.doc+'\n') + sys.stdout.write('|'+test.doc.replace('\n', ' ').replace('\r',\ + '')+'\n') if any("PERFTEST_LONG" in tag for tag in test.tags): sys.stdout.write('|'+test.message+'\n') sys.stdout.write('|'+test.status+'\n')