File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -35,10 +35,9 @@ class RoboFile extends \Robo\Tasks {
35
35
36
36
public function taskSplitTests(): \Robo\Result
37
37
{
38
- return $this->taskSplitTestsByTime(
39
- 3,
40
- '_data/time_report.json'
41
- )
38
+ $groups = 3;
39
+ $timeReportLocation = '_data/time_report.json';
40
+ return $this->taskSplitTestsByTime($groups, $timeReportLocation)
42
41
->projectRoot('.')
43
42
->testsFrom('tests')
44
43
->groupsTo('tests/_data/timekeeper/group_')
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ class TimeSplitterTask extends BaseTask
30
30
/**
31
31
* @var string The filename pattern under which groups will be saved.
32
32
*/
33
- private $ groupOutputLoc = '_data/timekeeper/group_ ' ;
33
+ private $ groupOutputLoc = 'tests/ _data/timekeeper/group_ ' ;
34
34
35
35
/**
36
36
* @var string The directory that holds test files.
You can’t perform that action at this time.
0 commit comments