Updating README and CONTRIBUTING

This commit is contained in:
Amine Ben hammou
2018-10-09 17:29:08 +02:00
parent 9ec6f52098
commit a772aceb39
3 changed files with 122 additions and 201 deletions

View File

@@ -219,16 +219,8 @@ class RoboFile extends \Robo\Tasks {
return $this->_exec('vendor/bin/security-checker security:check --format=simple');
}
function testDebug($opts=['file' => null, 'xml' => false]) {
$this->loadEnv();
$this->_exec('vendor/bin/codecept build -c codeception.unit.yml');
$command = 'vendor/bin/codecept run unit -c codeception.unit.yml --debug -f '.(($opts['file']) ? $opts['file'] : '');
if($opts['xml']) {
$command .= ' --xml';
}
return $this->_exec($command);
function testDebug($opts=['file' => null, 'xml' => false, 'debug' => true]) {
return $this->testUnit($opts);
}
function testAcceptance($opts=['file' => null, 'skip-deps' => false]) {