From 45c925f0b61e471c27f79eecf10ae207b8f91de5 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Thu, 24 Nov 2022 12:59:35 +0200 Subject: [PATCH] isort insists on this blank line, wtf? --- tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests.py b/tests.py index cb75332..2d0dffe 100644 --- a/tests.py +++ b/tests.py @@ -96,6 +96,7 @@ def test_run_success(self): def test_run_failure(self): from check_manifest import CommandFailed, run + # /bin/false can return any non-zero status code, e.g. it returns 255 # on OpenIndiana: https://github.com/mgedmin/check-manifest/issues/162 command = [sys.executable, '-c', 'import sys; sys.exit(1)']