@@ -23,7 +23,8 @@ def test_not_version_regex():
2323 for no_string in ["no" , "NO" ]:
2424 for post_no_space in ['' , ' ' , "\t " , " " ]:
2525 for cover_string in ["cover" , "COVER" ]:
26- for post_cover_space in [' ' ]: # ['', ' ', "\t", " "]: # TODO: This regex is picky about the space here
26+ for post_cover_space in [' ' ]:
27+ # ['', ' ', "\t", " "]: # TODO: This regex is picky about the space here
2728 for pre_version_sign in ['>' , '<' , ">=" , "<=" , '' ]:
2829 for py_string in ["Py" , "PY" , "py" ]:
2930 for version in [30 , 31 , 32 , 33 , 34 , 35 , 36 , 37 , 38 , 39 ]:
@@ -43,7 +44,8 @@ def test_not_version_regex():
4344 for no_string in ["no" , "NO" ]:
4445 for post_no_space in ['' , ' ' , "\t " , " " ]:
4546 for cover_string in ["cover" , "COVER" ]:
46- for post_cover_space in [' ' ]: # ['', ' ', "\t", " "]: # TODO: This regex is picky about the space here
47+ for post_cover_space in [' ' ]:
48+ # ['', ' ', "\t", " "]: # TODO: This regex is picky about the space here
4749 for post_cover_text in ['' , "abcdefg" , "hello world" ]:
4850 test_string = f"{ comment_string } { pragma_string } { post_pragma_space } { no_string } { post_no_space } { cover_string } { post_cover_space } { post_cover_text } "
4951 # print(f"[{counter} TESTING: {test_string}]")
0 commit comments