@@ -3145,17 +3145,17 @@ if __name__ == "__main__":
3145
3145
# Commands as tuple (tag, regexp, more-than-one-is-ok, optional, group-main, group-add)
3146
3146
# pylint: disable=bad-whitespace
3147
3147
# fmt: off
3148
- RE_EXEC = ("exec" , re .compile (CommandPrefix + "EXEC(-FAIL)?: *(.*)" ), True , False , 2 , 1 ) # noqa
3149
- RE_REQUIRES = ("requires" , re .compile (CommandPrefix + "REQUIRES: *(.*)" ), True , True , 1 , - 1 ) # noqa
3150
- RE_GROUP = ("group" , re .compile (CommandPrefix + "GROUP: *(.*)" ), True , True , 1 , - 1 ) # noqa
3151
- RE_SERIALIZE = ("serialize" , re .compile (CommandPrefix + "SERIALIZE: *(.*)" ), False , True , 1 , - 1 ) # noqa
3152
- RE_PORT = ("port" , re .compile (CommandPrefix + "PORT: *(.*)" ), True , True , 1 , - 1 ) # noqa
3153
- RE_INCLUDE_ALTERNATIVE = ("alternative" , re .compile (CommandPrefix + "ALTERNATIVE: *(.*)" ), True , True , 1 , - 1 ) # noqa
3154
- RE_IGNORE_ALTERNATIVE = ("not-alternative" , re .compile (CommandPrefix + "NOT-ALTERNATIVE: *(.*)" ), True , True , 1 , - 1 ) # noqa
3155
- RE_COPY_FILE = ("copy-file" , re .compile (CommandPrefix + "COPY-FILE: *(.*)" ), True , True , 1 , - 1 ) # noqa
3156
- RE_KNOWN_FAILURE = ("known-failure" , re .compile (CommandPrefix + "KNOWN-FAILURE" ), False , True , - 1 , - 1 ) # noqa
3157
- RE_MEASURE_TIME = ("measure-time" , re .compile (CommandPrefix + "MEASURE-TIME" ), False , True , - 1 , - 1 ) # noqa
3158
- RE_DOC = ("doc" , re .compile (CommandPrefix + "DOC: *(.*)" ), True , True , 1 , - 1 ) # noqa
3148
+ RE_EXEC = ("exec" , re .compile (CommandPrefix + "EXEC(-FAIL)?: *(.*)" ), True , False , 2 , 1 )
3149
+ RE_REQUIRES = ("requires" , re .compile (CommandPrefix + "REQUIRES: *(.*)" ), True , True , 1 , - 1 )
3150
+ RE_GROUP = ("group" , re .compile (CommandPrefix + "GROUP: *(.*)" ), True , True , 1 , - 1 )
3151
+ RE_SERIALIZE = ("serialize" , re .compile (CommandPrefix + "SERIALIZE: *(.*)" ), False , True , 1 , - 1 )
3152
+ RE_PORT = ("port" , re .compile (CommandPrefix + "PORT: *(.*)" ), True , True , 1 , - 1 )
3153
+ RE_INCLUDE_ALTERNATIVE = ("alternative" , re .compile (CommandPrefix + "ALTERNATIVE: *(.*)" ), True , True , 1 , - 1 )
3154
+ RE_IGNORE_ALTERNATIVE = ("not-alternative" , re .compile (CommandPrefix + "NOT-ALTERNATIVE: *(.*)" ), True , True , 1 , - 1 )
3155
+ RE_COPY_FILE = ("copy-file" , re .compile (CommandPrefix + "COPY-FILE: *(.*)" ), True , True , 1 , - 1 )
3156
+ RE_KNOWN_FAILURE = ("known-failure" , re .compile (CommandPrefix + "KNOWN-FAILURE" ), False , True , - 1 , - 1 )
3157
+ RE_MEASURE_TIME = ("measure-time" , re .compile (CommandPrefix + "MEASURE-TIME" ), False , True , - 1 , - 1 )
3158
+ RE_DOC = ("doc" , re .compile (CommandPrefix + "DOC: *(.*)" ), True , True , 1 , - 1 )
3159
3159
# fmt: on
3160
3160
# pylint: enable=bad-whitespace
3161
3161
0 commit comments