Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/esler/phpunit-graceful-interrupt
Allow gracefully interrupt running PHPUnit tests
https://github.com/esler/phpunit-graceful-interrupt
phpunit phpunit-extension phpunit-listener phpunit-tests
Last synced: 25 days ago
JSON representation
Allow gracefully interrupt running PHPUnit tests
- Host: GitHub
- URL: https://github.com/esler/phpunit-graceful-interrupt
- Owner: esler
- License: mit
- Created: 2016-11-07T17:57:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T11:13:25.000Z (5 months ago)
- Last Synced: 2024-09-29T16:02:01.927Z (about 1 month ago)
- Topics: phpunit, phpunit-extension, phpunit-listener, phpunit-tests
- Language: PHP
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Description
A simple plug-in which allows to you interrupt running PHPUnit tests **gracefully**.## Instalation
```bash
composer require --dev esler/phpunit-graceful-interrupt
```#### For PHPUnit >= 10
```xml
Add extension to your `phpunit.xml`
```
#### For PHPUnit < 10
Add listener to your `phpunit.xml`
```xml
```
## Usage
Just hit `Ctrl+\` to interrupt running tests. Errors and failures from previous tests will be shown.More [info](https://github.com/esler/phpunit-graceful-interrupt/wiki).
## License
MIT