@@ -23,7 +23,8 @@ def test_not_version_regex():
23
23
for no_string in ["no" , "NO" ]:
24
24
for post_no_space in ['' , ' ' , "\t " , " " ]:
25
25
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
27
28
for pre_version_sign in ['>' , '<' , ">=" , "<=" , '' ]:
28
29
for py_string in ["Py" , "PY" , "py" ]:
29
30
for version in [30 , 31 , 32 , 33 , 34 , 35 , 36 , 37 , 38 , 39 ]:
@@ -43,7 +44,8 @@ def test_not_version_regex():
43
44
for no_string in ["no" , "NO" ]:
44
45
for post_no_space in ['' , ' ' , "\t " , " " ]:
45
46
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
47
49
for post_cover_text in ['' , "abcdefg" , "hello world" ]:
48
50
test_string = f"{ comment_string } { pragma_string } { post_pragma_space } { no_string } { post_no_space } { cover_string } { post_cover_space } { post_cover_text } "
49
51
# print(f"[{counter} TESTING: {test_string}]")
0 commit comments