all repos — tint2 @ 5cea67171ba5df2e601b04383453977552862826

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Do not report 3rd party library warnings
o9000 mrovi9000@gmail.com
commit

5cea67171ba5df2e601b04383453977552862826

parent

328a35f949c579492ddaabae1ec352b2668d6334

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M test/regression.pytest/regression.py

@@ -296,13 +296,13 @@ if c.returncode != 0:

print("Status: Failed!", error) print("Output:") print("```\n" + out.strip() + "\n```") - if "warning:" in out: + warnings = [ line for line in out.split("\n") if "warning:" in line and ".so." not in line.split(":", 1)[0] ] + if warnings: print("Status: Succeeded with warnings!", warning) print("Warnings:") print("```", end="") - for line in out.split("\n"): - if "warning:" in line: - print(line, end="") + for line in warnings: + print(line, end="") print("```", end="") else: print("Status: Succeeded in %.1f seconds" % (duration,), ok)