Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: Only stop containers when not on CI
Signed-off-by: Marcel Müller <[email protected]>
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
SystemKeeper authored and artonge committed May 26, 2025
commit df8e2369efeb097b669f0601c2ed71a30c684fc0
4 changes: 3 additions & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ export default defineConfig({

// Remove container after run
on('after:run', () => {
stopNextcloud()
if (!process.env.CI) {
stopNextcloud()
}
})

// Before the browser launches
Expand Down