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
It happens when using dockerCompose.isRequiredBy(test) . The problem is that test depends on compileTest and dockerComposeUp tasks but with undefined order.
The plugin could ensure that dockerComposeUp will be called as last task before the test. For example, we could iterate all dependencies of test task and call mustRunAfter or shouldRunAfter on them. We could make it for all the tasks, or just for compile tasks.
The text was updated successfully, but these errors were encountered:
It happens when using
dockerCompose.isRequiredBy(test)
. The problem is thattest
depends oncompileTest
anddockerComposeUp
tasks but with undefined order.The plugin could ensure that
dockerComposeUp
will be called as last task before thetest
. For example, we could iterate all dependencies oftest
task and callmustRunAfter
orshouldRunAfter
on them. We could make it for all the tasks, or just for compile tasks.The text was updated successfully, but these errors were encountered: