ci: do not throw if docker container stop failed
This commit is contained in:
parent
d3fc689269
commit
c76be2f1e0
1 changed files with 6 additions and 2 deletions
|
@ -74,6 +74,10 @@ export async function createSuite(testFile, maxMemoryUsage) {
|
||||||
|
|
||||||
shouldAssertMemoryUsage = true
|
shouldAssertMemoryUsage = true
|
||||||
|
|
||||||
await container.stop()
|
try {
|
||||||
await container.remove()
|
await container.stop()
|
||||||
|
await container.remove()
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue