fix(workflows): run the Mage-OS Suite testsuite, not a removed one#371
Merged
mage-os-ci merged 1 commit intoMay 16, 2026
Merged
Conversation
The workflow strips the upstream "Memory Usage Tests" and "Magento Integration Tests Real Suite" testsuites from phpunit.xml.dist, then injects a new "Mage-OS Suite" containing the shard's directories. However, the run command still passed --testsuite 'Magento Integration Tests' — a name that no longer exists in upstream phpunit.xml.dist — causing PHPUnit to print "No tests executed!" on every shard. Invoke the suite the workflow actually builds. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
phpunit.xml.distno longer defines aMagento Integration Teststestsuite — onlyMemory Usage TestsandMagento Integration Tests Real Suite. The workflow strips both and injects a newMage-OS Suitewith the shard's directories, but then ran PHPUnit with--testsuite 'Magento Integration Tests', which matches nothing.--testsuite 'Mage-OS Suite'— the suite the workflow actually builds.The
rum-memory-integration-testsjob is unaffected; it skips the suite-injection step and runsMemory Usage Testsagainst an unmodifiedphpunit.xml.dist.Observed in run https://github.com/mage-os/mageos-magento2/actions/runs/25951434263 — every shard finished in ~2–3 minutes with "No tests executed!".
Test plan
Integration Tests - Full Test Suiteonmage-os/mageos-magento2against this branch and confirm shards actually execute tests.🤖 Generated with Claude Code