https://github.com/atoum/atom-plugin
atoum integration: run your PHP unit tests and get feedback right in Atom editor
https://github.com/atoum/atom-plugin
atom-plugin atoum php test
Last synced: 18 days ago
JSON representation
atoum integration: run your PHP unit tests and get feedback right in Atom editor
- Host: GitHub
- URL: https://github.com/atoum/atom-plugin
- Owner: atoum
- License: other
- Created: 2015-11-15T22:40:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-09-12T15:05:22.000Z (over 3 years ago)
- Last Synced: 2025-03-24T16:46:10.828Z (about 1 month ago)
- Topics: atom-plugin, atoum, php, test
- Language: CoffeeScript
- Size: 820 KB
- Stars: 4
- Watchers: 8
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Atom plugin [](https://travis-ci.org/atoum/atom-plugin)
![]()
![]()
![]()
## Commands & keymaps
| Command | Description | Binding |
|--------------------------------------|----------------------------------------------------------------|-------------------------------------------------------------------------------------|
| `atoum-plugin:toggle` | Toggles atoum panel | ctrl + alt + a |
| `atoum-plugin:run-file` | Runs the selected file in the treeview | 🖱 |
| `atoum-plugin:run-current-file` | Runs the selected directory in the treeview | 🖱 |
| `atoum-plugin:run-directory` | Runs the currently focused file in the editor | cmd + ctrl + alt + a |
| `atoum-plugin:run-current-directory` | Runs the directory of the currently focused file in the editor | cmd + shift + ctrl + alt + a |## Configuration
| Key | Description | Default |
|------------------------------------|----------------------------------------|--------------------------------|
| `atoum-plugin.usePackagedPhar` | Use the packaged [atoum PHAR](http://docs.atoum.org/en/latest/getting_started.html?highlight=phar#phar-archive) | `false` |
| `atoum-plugin.maxChildrenNumber` | Maximum number of [concurrent processes](http://docs.atoum.org/en/latest/option_cli.html?highlight=process#mcn-integer-max-children-number-integer) | Number of CPUs on your machine |
| `atoum-plugin.disableCodeCoverage` | Disable [code coverage](http://docs.atoum.org/en/latest/option_cli.html?highlight=process#ncc-no-code-coverage) | `true` |
| `atoum-plugin.enableDebugMode` | Enable [debug mode](http://docs.atoum.org/en/latest/written_help.html#le-mode-debug) | `false` |
| `atoum-plugin.xdebugConfig` | xDebug configuration | ` ` |
| `atoum-plugin.failIfVoidMethod` | Fail if there is a void method | `false` |
| `atoum-plugin.failIfSkippedMethod` | Fail if there is a skipped method | `false` |
| `atoum-plugin.phpPath` | Path to the PHP binary to use | `php` |
| `atoum-plugin.phpArguments` | Arguments to append to the PHP command | ` ` |