Ignore phpunit.cache and vendor folder#4
Merged
chrisdicarlo merged 7 commits intomainfrom Nov 24, 2025
Merged
Conversation
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.
This pull request introduces a comprehensive automated testing workflow to the project, including new PHPUnit configuration files, test fixtures, and integration tests. It adds a GitHub Actions workflow for continuous integration, sets up Composer for test dependencies, and documents the testing process. The changes ensure that tests are run across multiple PHP versions, provide a robust suite of example tests and fixtures, and verify end-to-end behavior of the
phpunit-failed-runnerscript.Continuous Integration and Composer Setup
.github/workflows/tests.yml) to automatically run tests on pushes and pull requests for multiple PHP versions.composer.jsonto include PHPUnit as a development dependency, configured PSR-4 autoloading for tests, and added a Composer test script for easy execution.Testing Infrastructure
phpunit.xmlandphpunit-integration-fixtures.xml) to define test suites, source directories, and integration test setups. [1] [2]tests/Fixturesandtestsdirectories, demonstrating both passing and failing behaviors for incremental test fixing. [1] [2] [3] [4] [5] [6]Integration and Script Testing
tests/Integration/ScriptBehaviorTest.php) that verifies the end-to-end behavior of thebin/phpunit-failed-runnerscript, including its handling of failing tests, logfiles, XML transformations, and output messages.Documentation
README.mdwith instructions for running the test suite.