fix: preprocess focused test generation

This commit is contained in:
Aaron Liang
2026-07-15 00:49:01 +08:00
parent 3dd96b31ef
commit 5c9a58df8e
+4 -1
View File
@@ -4,6 +4,7 @@ on:
push: push:
paths: paths:
- tools/apply_final_flow_fixes.py - tools/apply_final_flow_fixes.py
- tools/fix_final_flow_test_generation.py
- .github/workflows/temp-final-flow-fixes.yml - .github/workflows/temp-final-flow-fixes.yml
workflow_dispatch: workflow_dispatch:
@@ -15,6 +16,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Repair focused test generation
run: python tools/fix_final_flow_test_generation.py
- name: Apply final flow fixes - name: Apply final flow fixes
run: python tools/apply_final_flow_fixes.py run: python tools/apply_final_flow_fixes.py
- name: Verify syntax - name: Verify syntax
@@ -25,7 +28,7 @@ jobs:
run: | run: |
git config user.name "github-actions[bot]" git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git rm -f tools/apply_final_flow_fixes.py .github/workflows/temp-final-flow-fixes.yml git rm -f tools/apply_final_flow_fixes.py tools/fix_final_flow_test_generation.py .github/workflows/temp-final-flow-fixes.yml
git add -A git add -A
git commit -m "fix: finish shared registration flow hardening" git commit -m "fix: finish shared registration flow hardening"
git push git push