-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRoboFile.php
More file actions
35 lines (32 loc) · 825 Bytes
/
Copy pathRoboFile.php
File metadata and controls
35 lines (32 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
class RoboFile extends \Robo\Tasks
{
/**
* Runs the unit tests.
*/
public function test()
{
$this->stopOnFail(true);
$this->taskPHPUnit()
->option('disallow-test-output')
->option('strict-coverage')
->option('-v')
->option('-d error_reporting=-1')
->arg('tests')
->run();
}
/**
* Provides test coverage for Codeclimate.
*/
public function testCoverageCodeclimate()
{
$this->stopOnFail(true);
$this->taskPHPUnit()
->option('disallow-test-output')
->option('strict-coverage')
->option('-d error_reporting=-1')
->option('--coverage-clover=build/logs/clover.xml')
->arg('tests')
->run();
}
}