From 3c434ec5a9e59f6be3a5d70ab70cb874fa24d03b Mon Sep 17 00:00:00 2001 From: alstr Date: Thu, 10 Apr 2025 14:35:31 +0100 Subject: [PATCH] Fix environment variable name --- tests/test_process_diff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_process_diff.py b/tests/test_process_diff.py index 18da372..af19167 100644 --- a/tests/test_process_diff.py +++ b/tests/test_process_diff.py @@ -74,7 +74,7 @@ class IssueUrlInsertionTest(unittest.TestCase): # this test can take a while and, as far as TodoParser is concerned, # redundant with the tests of test_todo_parser, so enable the means # to skip it if desired - @unittest.skipIf(os.getenv('SKIP_PROCESS_DIFF_TEST', 'false') == 'true', + @unittest.skipIf(os.getenv('INPUT_SKIP_PROCESS_DIFF_TEST', 'false') == 'true', "Skipping because 'SKIP_PROCESS_DIFF_TEST' is 'true'") def test_url_insertion(self): self._setUp(['test_new.diff'])