You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
When running multiple flutter test commands parallely via flutterTest() method for sharded tests, the cli throws the below error
Waiting for another flutter command to release the startup lock...
If the same flutter test command is ran for sharded tests without using flutterTest() method but via Process.start, the flutter command runs the sharded tests successfully.
Expected Behavior
When executing the flutter test command via Process.start for the shared tests, it runs without failure. flutterTest() method also uses Process.start internally & it should run without locking flutter command on the sharded tests.
Description
When running multiple
flutter test
commands parallely viaflutterTest()
method for sharded tests, thecli
throws the below errorIf the same
flutter test
command is ran for sharded tests without usingflutterTest()
method but viaProcess.start
, theflutter
command runs the sharded tests successfully.Steps To Reproduce
Expected Behavior
When executing the
flutter test
command viaProcess.start
for the shared tests, it runs without failure.flutterTest()
method also usesProcess.start
internally & it should run without lockingflutter
command on the sharded tests.Screenshots
Additional Context
Please find the test case to reproduce the issue here:
The text was updated successfully, but these errors were encountered: