Fix server shutdown after integration tests

This commit is contained in:
René Pfeuffer
2021-01-13 15:08:35 +01:00
parent 4e1bf1d13b
commit 75ba7459c0

View File

@@ -99,7 +99,6 @@ task e2eTests(type: YarnTask) {
args = ['run', 'e2e-tests']
ignoreExitValue = project.isCI
mustRunAfter 'startScmServer'
dependsOn 'yarn_install', 'startScmServer'
}
@@ -110,5 +109,7 @@ task updateE2eTestTimestamps(type: TouchFiles) {
task integrationTest {
dependsOn(javaIntegrationTests, e2eTests)
finalizedBy 'stopScmServer'
finalizedBy = ['stopScmServer']
description = "Runs all integration tests."
group = "verification"
}