diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-06-18 15:08:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 15:08:44 +0200 |
commit | 61df8fa3ea3b313565617c048e46eefb1baa843d (patch) | |
tree | 11ea3722a15a679ea0a07144cb25ec3dd00ff7f1 | |
parent | 250bb12572c4f486f05980be315d16177b0e8b30 (diff) | |
parent | ead63a067ec5fdae468981c3150c63bc00bdc819 (diff) | |
download | nextcloud-server-61df8fa3ea3b313565617c048e46eefb1baa843d.tar.gz nextcloud-server-61df8fa3ea3b313565617c048e46eefb1baa843d.zip |
Merge pull request #45894 from nextcloud/test/cypress/changes-ci
-rw-r--r-- | cypress.config.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cypress.config.ts b/cypress.config.ts index d4896fd8d02..2c91c6256d5 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -94,7 +94,10 @@ export default defineConfig({ config.baseUrl = `http://${ip}/index.php` await waitOnNextcloud(ip) await configureNextcloud() - await applyChangesToNextcloud() + + if (!process.env.CI) { + await applyChangesToNextcloud() + } // IMPORTANT: return the config otherwise cypress-split will not work return config |