@@ -50,19 +50,19 @@ def parse_func(file_path: Path) -> XMLParser:
5050matches_re_start = re .compile (
5151 r"!\$######([^:]*)" # group 1: module path
5252 r":((?:[^:.]*\.)*)" # group 2: class prefix with trailing dot, or empty
53- r"([^.:]*)" # group 3: test function name
54- r":([^:]*)" # group 4: function being tested
55- r":([^:]*)" # group 5: loop index
56- r":([^#]*)" # group 6: iteration id
53+ r"([^.:]*)" # group 3: test function name
54+ r":([^:]*)" # group 4: function being tested
55+ r":([^:]*)" # group 5: loop index
56+ r":([^#]*)" # group 6: iteration id
5757 r"######\$!\n"
5858)
5959matches_re_end = re .compile (
60- r"!######([^:]*)" # group 1: module path
60+ r"!######([^:]*)" # group 1: module path
6161 r":((?:[^:.]*\.)*)" # group 2: class prefix with trailing dot, or empty
62- r"([^.:]*)" # group 3: test function name
63- r":([^:]*)" # group 4: function being tested
64- r":([^:]*)" # group 5: loop index
65- r":([^#]*)" # group 6: iteration_id or iteration_id:runtime
62+ r"([^.:]*)" # group 3: test function name
63+ r":([^:]*)" # group 4: function being tested
64+ r":([^:]*)" # group 5: loop index
65+ r":([^#]*)" # group 6: iteration_id or iteration_id:runtime
6666 r"######!"
6767)
6868
0 commit comments