-
-
Notifications
You must be signed in to change notification settings - Fork 365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix junit parallel #1073
Fix junit parallel #1073
Conversation
@calebdw can you please test and confirm if this fixes all issues? |
I'm testing now |
I'm having trouble installing it: $ composer update -W
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires pestphp/pest-plugin-faker ^2.0 -> satisfiable by pestphp/pest-plugin-faker[v2.0.0, 2.x-dev].
- pestphp/pest-plugin-faker[v2.0.0, ..., 2.x-dev] require pestphp/pest ^2.0.0 -> found pestphp/pest[2.x-dev] but it conflicts with your root composer.json require (dev-
fix-junit-parallel).
Problem 2
- Root composer.json requires spatie/pest-plugin-test-time ^2.0 -> satisfiable by spatie/pest-plugin-test-time[2.0.0].
- spatie/pest-plugin-test-time 2.0.0 requires pestphp/pest ^2.0 -> found pestphp/pest[2.x-dev] but it conflicts with your root composer.json require (dev-fix-junit-para
llel).
Problem 3
- pestphp/pest-plugin-laravel 2.x-dev requires pestphp/pest ^2.22.0 -> found pestphp/pest[2.x-dev] but it conflicts with your root composer.json require (dev-fix-junit-
parallel).
- pestphp/pest-plugin-laravel v2.0.0 requires pestphp/pest ^2.0.0 -> found pestphp/pest[2.x-dev] but it conflicts with your root composer.json require (dev-fix-junit-pa
rallel).
- pestphp/pest-plugin-laravel v2.1.0 requires pestphp/pest ^2.8.3 -> found pestphp/pest[2.x-dev] but it conflicts with your root composer.json require (dev-fix-junit-pa
rallel).
- pestphp/pest-plugin-laravel v2.2.0 requires pestphp/pest ^2.13.0 -> found pestphp/pest[2.x-dev] but it conflicts with your root composer.json require (dev-fix-junit-p
arallel).
- Root composer.json requires pestphp/pest-plugin-laravel ^2.0 -> satisfiable by pestphp/pest-plugin-laravel[v2.0.0, v2.1.0, v2.2.0, 2.x-dev].
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions. |
@calebdw if updated the composer json note the "require-dev": {
"pestphp/pest": "dev-fix-junit-parallel as v2.33"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/nuernbergerA/pest"
}
], |
@nuernbergerA, everything seems to work great! |
@nuernbergerA After merging this pull request, the |
@nunomaduro yes i double checked it and can confirm that it works with and without parallel. |
What:
Description:
JunitXmlLogger
Related:
Fixes #1070
Caused by #887 and b9d2be8
How to test