-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Travis: running more tests for cache component #7067
Conversation
While I like the idea of testing new adapters, how much does this affect build times? |
see https://travis-ci.org/marc-mabe/zf2/builds/44806387 The most additional time is for running the additional tests but that will be in parallel and should be negligible. memcached and redis is already installed - so only needs to be started. |
@@ -71,7 +71,6 @@ defined('TESTS_ZEND_BARCODE_PDF_SUPPORT') || define('TESTS_ZEND_BARCODE_PDF_SUPP | |||
* Zend\Cache\Storage\Adapter | |||
*/ | |||
defined('TESTS_ZEND_CACHE_APC_ENABLED') || define('TESTS_ZEND_CACHE_APC_ENABLED', false); | |||
defined('TESTS_ZEND_CACHE_SQLITE_ENABLED') || define('TESTS_ZEND_CACHE_SQLITE_ENABLED', false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you removing this one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no sqlite adapter - this is a relict of ZF1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay -- thanks for the clarification!
Travis: running more tests for cache component Conflicts: .travis.yml
Merged to develop for release with 2.4. |
…avis/cache Travis: running more tests for cache component Conflicts: .travis.yml
Apc
storage adapter tests using last availableapcu
extensionMemcache
storage adapter tests using pre-installed but not enabledmemcache
extensionMemcached
storage adapter tests using pre-installed but not enabledmemcached
extensionbefore_script
Redis
storage adapter tests using pre-installed but not enabledredis
extensionbefore_script
There are some tests failing currently but these should be solved by #7065 and #7043
@Ocramius ping