Skip to content

Commit

Permalink
composer and phpunit.xml for v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gecche committed Oct 29, 2019
1 parent 36bdf5d commit 7867d68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
}
],
"require": {
"laravel/framework": ">=5.5.0"
"laravel/framework": "~5.6.0"
},
"require-dev": {
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~6.0",
"limedeck/phpunit-detailed-printer": "^3.2",
"orchestra/testbench": "~3.5.0",
"orchestra/testbench-browser-kit": "~3.5.0"
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0",
"limedeck/phpunit-detailed-printer": "^4.2",
"orchestra/testbench": "~3.6.0",
"orchestra/testbench-browser-kit": "~3.6.0"
},
"autoload": {
"classmap": [
Expand Down
5 changes: 2 additions & 3 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
convertWarningsToExceptions="true"
printerClass="LimeDeck\Testing\Printer"
processIsolation="true"
stopOnFailure="false"
syntaxCheck="false">
stopOnFailure="false">
<testsuites>
<testsuite name="Laravel Multidomain Test Suite">
<directory suffix=".php">./tests/src/</directory>
Expand All @@ -22,7 +21,7 @@
</filter>
<logging>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/clover.xml"/>
</logging>
Expand Down
2 changes: 1 addition & 1 deletion tests/src/ArtisanTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public function testQueueListenCommand() {
$process2->run();

//Wait for a reasonable time
//echo "End sleep\n";
sleep(5);

$this->assertFileExists($fileToTest);

Expand Down

0 comments on commit 7867d68

Please sign in to comment.