mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 00:42:40 +01:00
(stable) Promote 2016 Week 43
This commit is contained in:
commit
e17fe43ca3
2 changed files with 17 additions and 1 deletions
|
@ -169,6 +169,11 @@ final class ArcanistSettings extends Phobject {
|
|||
'default' => false,
|
||||
'example' => 'false',
|
||||
),
|
||||
'aliases' => array(
|
||||
'type' => 'aliases',
|
||||
'help' => pht(
|
||||
'Configured command aliases. Use "arc alias" to define aliases.'),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -263,6 +268,12 @@ final class ArcanistSettings extends Phobject {
|
|||
break;
|
||||
case 'wild':
|
||||
break;
|
||||
case 'aliases':
|
||||
throw new Exception(
|
||||
pht(
|
||||
'Use "arc alias" to configure aliases, not "arc set-config".'));
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
return $value;
|
||||
|
@ -296,6 +307,7 @@ final class ArcanistSettings extends Phobject {
|
|||
}
|
||||
break;
|
||||
case 'wild':
|
||||
case 'aliases':
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
@ -126,8 +126,12 @@ final class NoseTestEngine extends ArcanistUnitTestEngine {
|
|||
}
|
||||
|
||||
public function readCoverage($cover_file, $source_path) {
|
||||
$coverage_xml = Filesystem::readFile($cover_file);
|
||||
if (strlen($coverage_xml) < 1) {
|
||||
return array();
|
||||
}
|
||||
$coverage_dom = new DOMDocument();
|
||||
$coverage_dom->loadXML(Filesystem::readFile($cover_file));
|
||||
$coverage_dom->loadXML($coverage_xml);
|
||||
|
||||
$reports = array();
|
||||
$classes = $coverage_dom->getElementsByTagName('class');
|
||||
|
|
Loading…
Reference in a new issue