Skip to content

Commit b1c0b41

Browse files
authored
Run tests in parallel (#170)
* Run tests in parallel * Disable/enable some services * Do not install redis on PHP 5.6 * Run composer update * Install redis 3.0.0 * Enable redis extension but do not install * Bugfix * force instsall dependencies * Force install stuff * Fixes * Minors * Updated deps * Debub * Coverage fix * Reduce sleep * Because... you know * Sleep less * Applied changes from StyleCI * Applied changes from StyleCI
1 parent 98ee818 commit b1c0b41

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Tests/CreatePoolTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function createSimpleCache()
3535
private function getFilesystem()
3636
{
3737
if ($this->filesystem === null) {
38-
$this->filesystem = new Filesystem(new Local(__DIR__.'/'));
38+
$this->filesystem = new Filesystem(new Local(__DIR__.'/cache'.rand(1, 100000)));
3939
}
4040

4141
return $this->filesystem;

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"type": "library",
55
"license": "MIT",
66
"minimum-stability": "dev",
7+
"prefer-stable": true,
78
"keywords": [
89
"cache",
910
"psr-6",
@@ -31,7 +32,7 @@
3132
"league/flysystem": "^1.0"
3233
},
3334
"require-dev": {
34-
"phpunit/phpunit": "^4.0 || ^5.1",
35+
"phpunit/phpunit": "^5.7.21",
3536
"cache/integration-tests": "^0.16"
3637
},
3738
"provide": {

0 commit comments

Comments
 (0)