We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4f901b commit bc0064dCopy full SHA for bc0064d
benchmark/Naming.md
@@ -145,4 +145,4 @@ with minor implementation variations.
145
</ul>
146
147
Technically, the benchmark's name must match the following regular expression:
148
-`[A-Z][a-zA-Z0-9\-\.!?]+`
+`[A-Z][a-zA-Z0-9\-.!?]+`
benchmark/scripts/Benchmark_Driver
@@ -305,7 +305,7 @@ class BenchmarkDoctor(object):
305
"""Unregister handler on exit."""
306
self.log.removeHandler(self.console_handler)
307
308
- benchmark_naming_convention_re = re.compile(r'[A-Z][a-zA-Z0-9\-\.!?]+')
+ benchmark_naming_convention_re = re.compile(r'[A-Z][a-zA-Z0-9\-.!?]+')
309
camel_humps_re = re.compile(r'[a-z][A-Z]')
310
311
@staticmethod
0 commit comments