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:
authorsgiehl <stefan@piwik.org>2014-10-12 04:02:45 +0400
committersgiehl <stefan@piwik.org>2014-10-12 04:02:45 +0400
commitffc4df6195031324a23f6facc2a7e345cc092ea3 (patch)
treebbf1f08476841dc20c5a6ac7d5b3f2f5ab86c797 /.travis.yml
parente21e7b330893f8cda3b817783c7a6fd166a6f88b (diff)
small fix
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 1c2c5db858..81092082ae 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -113,7 +113,7 @@ install:
- git checkout master -- ./tests/travis ./plugins/CoreConsole || true
before_script:
- - if [ -z "$TEST_SUITE" ];
+ - if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
then composer require satooshi/php-coveralls dev-master;
fi
@@ -165,7 +165,7 @@ after_script:
# change directory back to root travis dir
- cd $PIWIK_ROOT_DIR
- - if [ -z "$TEST_SUITE" ];
+ - if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
then php vendor/bin/coveralls -v;
fi