Skip to content

Commit

Permalink
fix: set pilot stamp patters to allow test specific names
Browse files Browse the repository at this point in the history
  • Loading branch information
martynia committed Nov 6, 2023
1 parent e87844d commit 000be91
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 000be91

Please sign in to comment.