From 5deed04e1e37e29705a63bd3b7e0117d5741a828 Mon Sep 17 00:00:00 2001 From: alstr Date: Thu, 20 Jan 2022 13:32:18 +0000 Subject: [PATCH] Add Julia TODO --- tests/test_todo_parser.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_todo_parser.py b/tests/test_todo_parser.py index 8580b7c..3556280 100644 --- a/tests/test_todo_parser.py +++ b/tests/test_todo_parser.py @@ -46,6 +46,10 @@ class NewIssueTests(unittest.TestCase): self.assertEqual(count_issues_for_file_type(self.raw_issues, 'tex'), 2) def test_julia_issues(self): + # TODO: Fix Julia markers + # The Julia tests are currently failing as @qwinters noticed in #96. + # It looks to be counting block comments twice as the line marker appears within the block marker. + # labels: bug self.assertEqual(count_issues_for_file_type(self.raw_issues, 'julia'), 2) def test_autohotkey_issues(self): @@ -60,6 +64,7 @@ class NewIssueTests(unittest.TestCase): def test_scss_issues(self): self.assertEqual(count_issues_for_file_type(self.raw_issues, 'scss'), 2) + class ClosedIssueTests(unittest.TestCase): # Check for removed TODOs across the files specified. def setUp(self):