Browse Source

The clover is allowed to be missing (for hhvm).

master
Sébastien Lucas 10 years ago
parent
commit
8d7b3afc3b
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      test/coverage-checker.php

+ 2
- 1
test/coverage-checker.php View File

@@ -15,7 +15,8 @@ $inputFile = $argv[1];
$percentage = min(100, max(0, (int) $argv[2]));

if (!file_exists($inputFile)) {
throw new InvalidArgumentException('Invalid input file provided');
echo 'Invalid input file provided';
exit (0);
}

if (!$percentage) {


Loading…
Cancel
Save