-
|
This is my local workspace {
"extends": [
"//"
],
"pipeline": {
"test": {
"cache": false,
"dependsOn": [
"dev"
]
},
"dev": {
"cache": false,
"persistent": false
}
}
}I'm using cypress to e2e, and I need to run the web server, With the configuration above when I run Currently only runs |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
@Odas0R is your dev task forever running? perhaps that prevents |
Beta Was this translation helpful? Give feedback.
-
|
Since |
Beta Was this translation helpful? Give feedback.
Since
testdepends ondev, it will never execute ifdevdoesn't exit. You can get what you want by using the--parallelflag, but in reality, we do not support depend on tasks that don't exit.