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 9808df1 commit e3c1fa2Copy full SHA for e3c1fa2
.github/workflows/perf-ci.yml
@@ -3,7 +3,7 @@
3
# * startup speed (== to parse and load all rules)
4
# * network filter matching (== the avg time to check a request)
5
# * first request matching delay (== time to check the first request)
6
-name: CI
+name: Performance CI
7
8
on:
9
push:
src/blocker.rs
@@ -2189,7 +2189,7 @@ mod legacy_rule_parsing_tests {
2189
// This engine also handles 3 rules that old one does not
2190
const EASY_LIST: ListCounts = ListCounts {
2191
filters: 35597, // 36259 - 662 exceptions
2192
- cosmetic_filters: 23080,
+ cosmetic_filters: if cfg!(feature = "css-validation") { 23072 } else { 23080 },
2193
exceptions: 662,
2194
duplicates: 0
2195
};
0 commit comments