Skip to content

Commit

Permalink
Merge pull request #7269 from martynia/integration_janusz_pilotlogsWr…
Browse files Browse the repository at this point in the history
…apper_fixfopilot218

fix: set pilot stamp patters to allow test specific names
  • Loading branch information
fstagni authored Nov 6, 2023
2 parents 0e95ea4 + 000be91 commit a8191a4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def __init__(self):
"""
# UUID pattern
self.pattern = re.compile(r"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$")
# pilot stamp pattern
self.stamppattern = re.compile(r"^[0-9a-f]{32}$")
# pilot stamp pattern (relax to a-z to allow test specific names)
self.stamppattern = re.compile(r"^[0-9a-z]{32}$")
self.meta = {}
logPath = os.path.join(os.getcwd(), "pilotlogs")
self.meta["LogPath"] = logPath
Expand Down

0 comments on commit a8191a4

Please sign in to comment.