Commit 0e3d48f2 by Carsten Brandt

skip expiry test for memcache on travis

fixes #877
parent 155e9c6c
...@@ -26,4 +26,12 @@ class MemCacheTest extends CacheTestCase ...@@ -26,4 +26,12 @@ class MemCacheTest extends CacheTestCase
} }
return $this->_cacheInstance; return $this->_cacheInstance;
} }
public function testExpire()
{
if (isset($_ENV['TRAVIS']) && $_ENV['TRAVIS']) {
$this->markTestSkipped('Can not reliably test memcache expiry on travis-ci.');
}
parent::testExpire();
}
} }
...@@ -26,4 +26,12 @@ class MemCachedTest extends CacheTestCase ...@@ -26,4 +26,12 @@ class MemCachedTest extends CacheTestCase
} }
return $this->_cacheInstance; return $this->_cacheInstance;
} }
public function testExpire()
{
if (isset($_ENV['TRAVIS']) && $_ENV['TRAVIS']) {
$this->markTestSkipped('Can not reliably test memcached expiry on travis-ci.');
}
parent::testExpire();
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment