1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-25 16:22:42 +01:00

Document paths parameter in arc unit

Summary:
arc unit supports paths parameter
It is not documented in arc help

Test Plan:
arc help
Search for unit

Reviewers: slawekbiel, aran

Reviewed By: aran

CC: aran, vrana

Differential Revision: 1143
This commit is contained in:
Jakub Vrana 2011-11-30 12:56:18 -08:00
parent c3c4f6ed4c
commit 647c047b3c

View file

@ -34,9 +34,10 @@ class ArcanistUnitWorkflow extends ArcanistBaseWorkflow {
public function getCommandHelp() { public function getCommandHelp() {
return phutil_console_format(<<<EOTEXT return phutil_console_format(<<<EOTEXT
**unit** **unit** [__paths__]
Supports: git, svn Supports: git, svn
Run unit tests that cover local changes. Run unit tests that cover specified paths. If no paths are specified,
unit tests covering all modified files will be run.
EOTEXT EOTEXT
); );
} }