Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2015-03-09 06:03:12 +0300
committermattab <matthieu.aubry@gmail.com>2015-03-09 06:03:28 +0300
commit3ce0c85f790275745a6e0e9389f1fdca2d6a99d0 (patch)
tree7b7e30abd0279281c07126dbf2822a36196cc007
parent5dfad9401e33215e4bf35bea41f233b00b048db6 (diff)
Remove coveralls setup from codebase fixes #7391
-rw-r--r--.travis.yml10
-rw-r--r--plugins/TestRunner/templates/travis.yml.twig14
-rw-r--r--tests/README.md1
3 files changed, 2 insertions, 23 deletions
diff --git a/.travis.yml b/.travis.yml
index 3445a47b1e..dcb5e071b2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -93,11 +93,7 @@ install:
before_script:
- ./tests/travis/install_mysql_5.6.sh
- - if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
- then composer require satooshi/php-coveralls dev-master;
- else
- phpenv config-rm xdebug.ini;
- fi
+ phpenv config-rm xdebug.ini;
# add always_populate_raw_post_data=-1 to php.ini
- echo "always_populate_raw_post_data=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
@@ -152,10 +148,6 @@ after_script:
# change directory back to root travis dir
- cd $PIWIK_ROOT_DIR
- - if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
- then php vendor/bin/coveralls -v;
- fi
-
# output contents of files w/ debugging info to screen
- cat /var/log/nginx/error.log
- cat $PIWIK_ROOT_DIR/tmp/php-fpm.log
diff --git a/plugins/TestRunner/templates/travis.yml.twig b/plugins/TestRunner/templates/travis.yml.twig
index 0d2e53714e..04b2b663e4 100644
--- a/plugins/TestRunner/templates/travis.yml.twig
+++ b/plugins/TestRunner/templates/travis.yml.twig
@@ -102,10 +102,6 @@ install:
- rm -rf plugins/$PLUGIN_NAME
- mv ../$PLUGIN_NAME plugins
- # copy .coveralls.yml if none exists
- - if [ ! -f ../coveralls.yml ];
- then cp .coveralls.yml ../coveralls.yml || true;
- fi
{% endif %}
# make sure travis test scripts are always latest (so in older releases/branches, the latest scripts will still be used)
@@ -125,11 +121,7 @@ before_script:
{% endif %}
- ./tests/travis/install_mysql_5.6.sh
- - if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
- then composer require satooshi/php-coveralls dev-master;
- else
- phpenv config-rm xdebug.ini;
- fi
+ phpenv config-rm xdebug.ini;
# add always_populate_raw_post_data=-1 to php.ini
- echo "always_populate_raw_post_data=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
@@ -191,10 +183,6 @@ after_script:
# change directory back to root travis dir
- cd $PIWIK_ROOT_DIR
- - if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
- then php vendor/bin/coveralls -v;
- fi
-
# output contents of files w/ debugging info to screen
- cat /var/log/nginx/error.log
- cat $PIWIK_ROOT_DIR/tmp/php-fpm.log
diff --git a/tests/README.md b/tests/README.md
index 8849370096..555f07c5de 100644
--- a/tests/README.md
+++ b/tests/README.md
@@ -7,7 +7,6 @@ We use Travis CI for our continuous integration server. It automatically runs ou
after each commit to our GIT repo. More information at the links:
* Piwik on Travis CI: https://travis-ci.org/piwik/piwik
- * Piwik on Coveralls.io: https://coveralls.io/r/piwik
* QA in Piwik: http://piwik.org/qa/
Each core Piwik developer is responsible to keep the build green. If a developer breaks the build, he will receive an email from Travis CI.