X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fphpunit%2FMakefile;h=26d52179ec82fec352e7396372677b6d221c30bd;hb=14d9e80ba42c471f1c9e92c5cb6808b4723b5945;hp=a33b86a353e764e1582bedb214912ce028f8c25b;hpb=8b823537386abfa9c9d6ec0680cc325cf2e6722d;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/Makefile b/tests/phpunit/Makefile index a33b86a353..26d52179ec 100644 --- a/tests/phpunit/Makefile +++ b/tests/phpunit/Makefile @@ -39,30 +39,21 @@ tap: ${PU} --tap coverage: - ${PU} --coverage-html ../../docs/code-coverage + ${PU} --coverage-html ../../docs/coverage parser: ${PU} --group Parser -parserfuzz: - @echo "******************************************************************" - @echo "* This WILL kill your computer by eating all memory AND all swap *" - @echo "* *" - @echo "* If you are on a production machine. ABORT NOW!! *" - @echo "* Press control+C to stop *" - @echo "* *" - @echo "******************************************************************" - ${PU} --group Parser,ParserFuzz noparser: - ${PU} --exclude-group Parser,Broken,ParserFuzz,Stub + ${PU} --exclude-group Parser,Broken,Stub safe: - ${PU} --exclude-group Broken,ParserFuzz,Destructive,Stub + ${PU} --exclude-group Broken,Destructive,Stub databaseless: - ${PU} --exclude-group Broken,ParserFuzz,Destructive,Database,Stub + ${PU} --exclude-group Broken,Destructive,Database,Stub database: - ${PU} --exclude-group Broken,ParserFuzz,Destructive,Stub --group Database + ${PU} --exclude-group Broken,Destructive,Stub --group Database list-groups: ${PU} --list-groups @@ -73,11 +64,10 @@ help: # # Targets: # phpunit (default) Run all the tests with phpunit - # install Install PHPUnit from phpunit.de # tap Run the tests individually through Test::Harness's prove(1) # help You're looking at it! # coverage Run the tests and generates an HTML code coverage report - # You will need the Xdebug PHP extension for the later. + # You will need the Xdebug PHP extension for the latter. # [no]parser Skip or only run Parser tests # # list-groups List available Tests groups.