Skip to content

Commit

Permalink
chore: upgrade pest and enable parallel testing (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
faustbrian authored Sep 24, 2021
1 parent 183ebba commit d575bd6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
15 changes: 8 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@
"simplito/elliptic-php": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"friendsofphp/php-cs-fixer": "^3.0",
"graham-campbell/analyzer": "^3.0",
"illuminate/support": "^7.0.0",
"illuminate/support": "^7.0|^8.0",
"mockery/mockery": "^1.2",
"pestphp/drift": "^0.3.0",
"pestphp/pest": "^0.3.8",
"phpunit/phpunit": "^9.3.10",
"symfony/var-dumper": "^5.0.0"
"pestphp/drift": "^0.3",
"pestphp/pest": "^1.0",
"pestphp/pest-plugin-parallel": "^0.3.1",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.0"
},
"autoload": {
"psr-4": {
Expand All @@ -55,7 +56,7 @@
"vendor/bin/php-cs-fixer fix"
],
"test": [
"./vendor/bin/pest --coverage --min=100 --coverage-html=.coverage --coverage-clover=coverage.xml"
"./vendor/bin/pest --parallel"
]
},
"minimum-stability": "dev",
Expand Down
3 changes: 0 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,4 @@
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="clover.xml"/>
</logging>
</phpunit>

0 comments on commit d575bd6

Please sign in to comment.