Skip to content

Commit

Permalink
Merge pull request #109 from rlcee/fm_231203
Browse files Browse the repository at this point in the history
use fullmatch so it won't skip typos
  • Loading branch information
rlcee authored Dec 3, 2023
2 parents bcbcaa1 + 6a24f7e commit 89d41c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mu2eCI/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def check_test_cmd_mu2e(full_comment, repository):

for regex, handler in test_suites.TESTS:
# returns the first match in the comment
match = regex.search(full_comment)
match = regex.fullmatch(full_comment)
if match is None:
log.debug("NOT MATCHED - %s", str(regex.pattern))
continue
Expand Down

0 comments on commit 89d41c4

Please sign in to comment.