Created
June 6, 2016 19:03
-
-
Save legovaer/352dfd62596a9bed7e39a8b849f62675 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/core/scripts/run-tests.sh b/core/scripts/run-tests.sh | |
index df61328..72df950 100755 | |
--- a/core/scripts/run-tests.sh | |
+++ b/core/scripts/run-tests.sh | |
@@ -19,6 +19,10 @@ | |
$autoloader = require_once __DIR__ . '/../../autoload.php'; | |
+$path = getenv('HOME') . '/.composer/vendor/legovaer/phpcov-runner/lib'; | |
+set_include_path(get_include_path() . PATH_SEPARATOR . $path); | |
+require "autocoverage.php"; | |
+ | |
// Define some colors for display. | |
// A nice calming green. | |
const SIMPLETEST_SCRIPT_COLOR_PASS = 32; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment