Skip to content

Commit 91c2f1f

Browse files
BUG: Fixed regex in asv.conf.json (#17300)
In #17293 I messed up the syntax. I used a glob instead of a regex. According to the docs at http://asv.readthedocs.io/en/latest/asv.conf.json.html#regressions-thresholds we want to use a regex. I've actually manually tested this change and verified that it works. [ci skip]
1 parent d0d28fe commit 91c2f1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: asv_bench/asv.conf.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@
118118
// skipped for the matching benchmark.
119119
//
120120
"regressions_first_commits": {
121-
"*": "v0.20.0"
121+
".*": "v0.20.0"
122122
},
123123
"regression_thresholds": {
124-
"*": 0.05
124+
".*": 0.05
125125
}
126126
}

0 commit comments

Comments
 (0)