Skip to content

Commit a018aba

Browse files
test(demo): intentional FAIL for live_heap CI exclude wiring (#168)
Demo-only: ci.yml omits python_live_heap_3.14 from test_scenarios_exclude and list-scenarios unit test expects live_heap in the included set. Restore both to demo PASS.
1 parent f0d5ef3 commit a018aba

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
# exclude rather than a lookahead baked into test_scenarios.
6767
# Additional wheel-only 3.14 dirs (e.g. live_heap) are added to this list
6868
# when those scenarios land.
69-
test_scenarios_exclude: '_3\.15$|^python_live_heap_3\.14$|^python_downstream_gate$'
69+
test_scenarios_exclude: '_3\.15$|^python_downstream_gate$' # DEMO_FAIL: restore live_heap exclude to demo PASS
7070
secrets: inherit
7171
full_host:
7272
uses: ./.github/workflows/test.yml

cmd/list-scenarios/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func TestRun_ExcludeDropsMatchedNames(t *testing.T) {
137137
names = append(names, e.Names)
138138
}
139139
joined := strings.Join(names, ", ")
140-
want := "python_cpu, python_lock_3.14, python_mem_domain_3.14"
140+
want := "python_cpu, python_lock_3.14, python_mem_domain_3.14, python_live_heap_3.14" # DEMO_FAIL
141141
if joined != want {
142142
t.Fatalf("excluded set wrong:\n got %q\nwant %q", joined, want)
143143
}

0 commit comments

Comments
 (0)