all repos — tint2 @ 6433767a9895a81952770f57c5da0397dd384081

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

Regression testing
o9000 mrovi9000@gmail.com
commit

6433767a9895a81952770f57c5da0397dd384081

parent

f8037b7ff5adf90ee63da519f2c3539b16cb5e43

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

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

@@ -185,7 +185,7 @@ mem = get_mem_usage(tint2.pid)

stop(tint2) out, _ = tint2.communicate() exitcode = tint2.returncode - if exitcode != 0: + if exitcode != 0 and exitcode != 23: print("tint2 crashed with exit code {0}!".format(exitcode)) print("Output:") print("```\n" + out.strip() + "\n```")

@@ -320,6 +320,7 @@ parser.set_defaults(install_deps=False)

args = parser.parse_args() if args.install_deps: install_deps_ubuntu() + return if args.for_version != "HEAD": checkout(args.for_version) args.src_dir = "./tmpclone"