From 7515f803bc2fc016cc8dda9462d7205f05a32bae Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sat, 26 Oct 2024 21:31:31 +0300 Subject: [PATCH] Be more specific about tests --- tests/{test_all_functions.py => test_parser_functions.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/{test_all_functions.py => test_parser_functions.py} (99%) diff --git a/tests/test_all_functions.py b/tests/test_parser_functions.py similarity index 99% rename from tests/test_all_functions.py rename to tests/test_parser_functions.py index 19202bb..80c8f0f 100644 --- a/tests/test_all_functions.py +++ b/tests/test_parser_functions.py @@ -331,6 +331,6 @@ class TestParser(unittest.TestCase): self.assertLess(end_time - start_time, 0.1) -# Use `coverage run -m unittest --verbose tests/test_all_functions.py` instead for the coverage report +# Use `coverage run -m unittest --verbose tests/test_parser_functions.py` instead for the coverage report # if __name__ == '__main__': # unittest.main(verbosity=2)