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>2014-10-21 08:38:44 +0400
committermattab <matthieu.aubry@gmail.com>2014-10-21 08:38:44 +0400
commitc759c97550140689b50b6ff9ba4c3665fa39b2a1 (patch)
tree71239e2536a7ecfb926eaa58f49d57a6eb31559d /plugins/Contents
parentcc301f1afe22bd397a6edba2e1759b515455e35f (diff)
Skip couple system tests that randomly fail on mysqli
Diffstat (limited to 'plugins/Contents')
-rw-r--r--plugins/Contents/tests/System/ContentsTest.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/Contents/tests/System/ContentsTest.php b/plugins/Contents/tests/System/ContentsTest.php
index 4332217622..b555cf7962 100644
--- a/plugins/Contents/tests/System/ContentsTest.php
+++ b/plugins/Contents/tests/System/ContentsTest.php
@@ -27,6 +27,9 @@ class ContentsTest extends SystemTestCase
*/
public function testApi($api, $params)
{
+ if(self::isMysqli()) {
+ $this->markTestSkipped('Sometimes fail on MYSQLI (at random)');
+ }
$this->runApiTests($api, $params);
}