An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# Atom plugin [![Build Status](https://travis-ci.org/atoum/atom-plugin.svg?branch=master)](https://travis-ci.org/atoum/atom-plugin)


atoum
atom



atoum-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 | ` ` |