ci(quality): fix broken quality workflow (single-package audit-all) - #281
ci(quality): fix broken quality workflow (single-package audit-all)#281ywatanabe1989 wants to merge 1 commit into
Conversation
…age audit-all The quality workflow was a scitex-dev template copied verbatim: it shallow-cloned the ecosystem and ran scripts/quality/audit_ecosystem.py against src/<pkg>/_ecosystem/_core.py — neither of which exists in a leaf package, so the job always died with FileNotFoundError under 'bash -e'. Replace the body with the canonical single-package 'scitex-dev ecosystem audit-all scitex', matching tests/develop/test_audit.py.
|
Closing as superseded — fleet PR/Issue backlog sweep, 2026-08-11. What this PR attempted: repair the quality-audit workflow (single-package audit-all). Why it is being closed: it belonged to a fleet-wide sweep opened on 2026-05-22 (80 days ago) that was never merged in this repo. That subject has since been reworked by later generations of the same change — on the repos sampled, today's default branch already carries the intended shape, or has moved to the org-level reusable workflow entirely. The premise this PR was written against no longer describes this repo. Nothing is deleted. Branch |
Replace the broken ecosystem-clone quality template (FileNotFoundError on a non-existent
_ecosystem/_core.py+ missingscripts/quality/audit_ecosystem.py) with the canonical single-packagescitex-dev ecosystem audit-all scitex. Mirrors the audittests/develop/test_audit.pyruns.