From 1ffa8c5e72972674159b484fb2802317b241420a Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 3 Jul 2015 07:33:43 +0200 Subject: [PATCH] Removed code coverage logic. --- .coveralls.yml | 4 +--- .scrutinizer.yml | 4 +--- .travis.yml | 7 ------- 3 files changed, 2 insertions(+), 13 deletions(-) diff --git a/.coveralls.yml b/.coveralls.yml index 7b7d1beb5f..4625fdeb32 100644 --- a/.coveralls.yml +++ b/.coveralls.yml @@ -1,3 +1 @@ -src_dir: . -coverage_clover: build/logs/clover.xml -json_path: build/logs/coveralls-upload.json +src_dir: . \ No newline at end of file diff --git a/.scrutinizer.yml b/.scrutinizer.yml index e36d2f3684..611a729e69 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -1,5 +1,3 @@ # .scrutinizer.yml tools: - external_code_coverage: - timeout: 1800 # Timeout in seconds. - runs: 2 + external_code_coverage: false \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 150aeec78c..da826954ea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,10 +13,3 @@ install: script: - phpunit - -after_script: - - php vendor/bin/coveralls - - CODECLIMATE_REPO_TOKEN=26489f9e854fcdf7e7660ba29c1455694685465b1f90329a79f7d2bf448acb61 ./vendor/bin/test-reporter --stdout > codeclimate.json - - "curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v0.1.1)' https://codeclimate.com/test_reports" - - wget https://scrutinizer-ci.com/ocular.phar - - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml