This repository was archived by the owner on Sep 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrobo
More file actions
executable file
·38 lines (33 loc) · 1.42 KB
/
robo
File metadata and controls
executable file
·38 lines (33 loc) · 1.42 KB
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
36
37
38
#!/usr/bin/env php
<?php declare(strict_types=1);
////////////////////////////////////////////////////////////////////////////////
// __________ __ ________ __________
// \______ \ |__ ______ / _____/ ____ _____ ______\______ \ _______ ___
// | ___/ | \\____ \/ \ ____/ __ \\__ \\_ __ \ | _// _ \ \/ /
// | | | Y \ |_> > \_\ \ ___/ / __ \| | \/ | ( <_> > <
// |____| |___| / __/ \______ /\___ >____ /__| |______ /\____/__/\_ \
// \/|__| \/ \/ \/ \/ \/
// -----------------------------------------------------------------------------
// Designed and Developed by Brad Jones <brad @="bjc.id.au" />
// -----------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////
require_once(__DIR__.'/vendor/autoload.php');
class RoboFile extends \Robo\Tasks
{
use \Gears\Asset\loadTasks;
/**
* Runs unit tests, with code coverage report.
*/
public function test()
{
$this->taskCleanDir('./tests/output')->run();
exit
(
$this->taskPHPUnit()
->arg('./tests')
->option('coverage-clover', './build/logs/clover.xml')
->run()->getExitCode()
);
}
}
exit(\Robo\Robo::run($_SERVER['argv'], RoboFile::class));