diff options
author | Louis Chemineau <louis@chmn.me> | 2023-03-27 15:01:22 +0200 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2023-03-30 10:09:14 +0200 |
commit | 186491113e5fb7d81771b01a9dc54f4f5d62178c (patch) | |
tree | 7e0ae3ec1b8ac89ff08bcfd61287e2e3d28ef602 /cypress.config.ts | |
parent | 8cc29dd3dc2f97dd69ae1d1742e0e92767137daf (diff) | |
download | nextcloud-server-186491113e5fb7d81771b01a9dc54f4f5d62178c.tar.gz nextcloud-server-186491113e5fb7d81771b01a9dc54f4f5d62178c.zip |
Do not stop docker in cypress workflow
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'cypress.config.ts')
-rw-r--r-- | cypress.config.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cypress.config.ts b/cypress.config.ts index b8cb90c5177..0fba6005dc2 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -71,7 +71,9 @@ export default defineConfig({ // Remove container after run on('after:run', () => { - stopNextcloud() + if (!process.env.CI) { + stopNextcloud() + } }) // Before the browser launches |