Skip to content

Commit 3ee8d51

Browse files
authored
chore: add yaml aliases in .test_patterns.yml (#12516)
Small QOL change to this file so that once someone has been made the owner of a failing test (and so added to the list) we can easily refer to them by name rather than needing to refer to slack.
1 parent f733879 commit 3ee8d51

File tree

1 file changed

+35
-22
lines changed

1 file changed

+35
-22
lines changed

.test_patterns.yml

+35-22
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@
88
# When a failing test matches one or more of the "regex" properties below,
99
# a message is sent to slack channel #aztec3-ci tagging the owners.
1010

11+
names:
12+
- adam: &adam "U04BM8H25NJ"
13+
- alex: &alex "U05QWV669JB"
14+
- charlie: &charlie "UKUMA5J7K"
15+
- lasse: &lasse "U03E5SYLY3Z"
16+
- leila: &leila "UBLTU1NJ3"
17+
- luke: &luke "U03JYU7AQET"
18+
- mitch: &mitch "U06AY5G1NRK"
19+
- palla: &palla "U04TPBU26E8"
20+
- phil: &phil "U02G4KAD57Y"
21+
- sean: &sean "U04DT239VQU"
22+
- tom: &tom "U04LLT331NK"
23+
1124
tests:
1225
# barretenberg
1326
#
@@ -20,25 +33,25 @@ tests:
2033
# Expected: true
2134
- regex: "join_split_example_tests"
2235
owners:
23-
- "U03JYU7AQET" # luke
36+
- *luke
2437

2538
# Sumcheck is failing for some reason
2639
- regex: "barretenberg/acir_tests/run_test.sh ram_blowup_regression"
2740
skip: true
2841
owners:
29-
- "U04LLT331NK" # Tom
42+
- *tom
3043

3144

3245
# noir
3346
# Something to do with how I run the tests now. Think these are fine in nextest.
3447
- regex: "noir_lsp-.* notifications::notification_tests::test_caches_open_files"
3548
skip: true
3649
owners:
37-
- "UKUMA5J7K" # charlie
50+
- *charlie
3851
- regex: "noir_lsp-.* requests::"
3952
skip: true
4053
owners:
41-
- "UKUMA5J7K" # charlie
54+
- *charlie
4255
# Sometimes see this on ARM. But not when run on it's own...
4356
# FAILED 6a60c4e796ac0aef: noir/scripts/run_test.sh debug-21ff1948430ded06 tests::debug_ram_blowup_regression (code: 101)
4457
# running 1 test
@@ -54,7 +67,7 @@ tests:
5467
- regex: "tests::debug_ram_blowup_regression"
5568
skip: true
5669
owners:
57-
- "UKUMA5J7K" # charlie
70+
- *charlie
5871

5972
# Seen this error on all the below.
6073
# e.g. to grind: seq 1 16 | parallel --bar --tag --halt now,fail=1 ci3/dump_fail "NAME_POSTFIX=_{} yarn-project/end-to-end/scripts/run_test.sh simple e2e_p2p/gossip_network >/dev/null"
@@ -83,11 +96,11 @@ tests:
8396
# at Object.<anonymous> (e2e_p2p/reqresp.test.ts:66:13)
8497
- regex: "simple e2e_p2p/"
8598
owners:
86-
- "U04DT239VQU" # sean
99+
- *sean
87100

88101
- regex: "simple e2e_fees/private_payments"
89102
owners:
90-
- "U02G4KAD57Y" # phil
103+
- *phil
91104

92105
# Summary of all failing tests
93106
# FAIL ./e2e_cheat_codes.test.ts
@@ -116,56 +129,56 @@ tests:
116129
# Ran all test suites matching /e2e_cheat_codes/i.
117130
- regex: "simple e2e_cheat_codes"
118131
owners:
119-
- "U03E5SYLY3Z" # lasse
132+
- *lasse
120133

121134
- regex: "prover-client/src/test/bb_prover_parity.test.ts"
122135
owners:
123-
- "U04TPBU26E8" # palla
136+
- *palla
124137
- regex: "prover-client/src/proving_broker/broker_prover_facade.test.ts"
125138
owners:
126-
- "U04TPBU26E8" # palla
139+
- *palla
127140
- regex: "prover-client/src/orchestrator/orchestrator_errors.test.ts"
128141
owners:
129-
- "U04TPBU26E8" # palla
142+
- *palla
130143

131144
# yarn-project tests
132145
- regex: "p2p/src/services/reqresp/reqresp.test.ts"
133146
owners:
134-
- "U04DT239VQU" # sean
147+
- *sean
135148
- regex: "sequencer-client/src/slasher/slasher_client.test.ts"
136149
owners:
137-
- "U03E5SYLY3Z" # lasse
150+
- *lasse
138151
- regex: "prover-client/src/test/bb_prover_full_rollup.test.ts"
139152
owners:
140-
- "U04TPBU26E8" # palla
153+
- *palla
141154
- regex: "yarn-project/kv-store"
142155
owners:
143-
- "U05QWV669JB" # alex
156+
- *alex
144157

145158
# kind tests
146159

147160
- regex: "spartan/bootstrap.sh test-kind-4epochs"
148161
owners:
149-
- "UBLTU1NJ3" # leila
162+
- *leila
150163

151164
- regex: "spartan/bootstrap.sh test-prod-deployment"
152165
owners:
153-
- "U06AY5G1NRK" # mitch
166+
- *mitch
154167

155168
- regex: "spartan/bootstrap.sh test-kind-upgrade-rollup-version"
156169
owners:
157-
- "U06AY5G1NRK" # mitch
170+
- *mitch
158171

159172
- regex: "spartan/bootstrap.sh test-kind"
160173
owners:
161-
- "U02G4KAD57Y" # phil
162-
- "U06AY5G1NRK" # mitch
174+
- *phil
175+
- *mitch
163176
- regex: "spartan/bootstrap.sh test-local"
164177
skip: true
165178
owners:
166-
- "U04BM8H25NJ" # adam
179+
- *adam
167180

168181
# Slack testing.
169182
- regex: "nonsense to match"
170183
owners:
171-
- "UKUMA5J7K" # charlie
184+
- *charlie

0 commit comments

Comments
 (0)