diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-10-14 11:46:38 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-11-05 19:44:15 +0100 |
commit | 4eaeaf92c8785f34f8ac35715fb386e09b85c37e (patch) | |
tree | 43159aae91ed7d23d9b990c3404ae051bb772021 /public_html | |
parent | 2c94026f7f36ec7da94279a94ecf1f555f3994c6 (diff) |
tests: Add env variable to disable code coverage collection
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'public_html')
-rw-r--r-- | public_html/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public_html/index.php b/public_html/index.php index 6d81b244c..37526d903 100644 --- a/public_html/index.php +++ b/public_html/index.php @@ -230,7 +230,7 @@ function guidv4() $testname = null; -if (getenv("ENVIRONMENT") === "testsuite") { +if (getenv("ENVIRONMENT") === "testsuite" && getenv("COLLECT_COVERAGE") == 1) { if (function_exists("phpdbg_get_executable")) { $testname = implode(' ', $argv); } elseif (isset($_SERVER["HTTP_X_TESTSUITE_TESTNAME"])) { |