diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-05-04 00:02:18 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 00:02:18 -0300 |
commit | 61379c9165bee668612a407ea153ab382e5039b2 (patch) | |
tree | f9a091cbbf4cdae423f0273c0f104730d2bfdc84 /.drone.yml | |
parent | 806aeae71d970f70efaeb35db79d92f953279e49 (diff) | |
parent | 1a83c4c5c3601a69eff0fab1a3d6eca6683bdcb9 (diff) | |
download | nextcloud-server-61379c9165bee668612a407ea153ab382e5039b2.tar.gz nextcloud-server-61379c9165bee668612a407ea153ab382e5039b2.zip |
Merge pull request #4682 from nextcloud/try-to-start-browser-sessions-again-when-they-fail-in-acceptance-tests
Try to start browser sessions again when they fail in acceptance tests
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml index f5776cd019e..e5fda39f4ee 100644 --- a/.drone.yml +++ b/.drone.yml @@ -467,21 +467,21 @@ pipeline: acceptance-access-levels: image: nextcloudci/php7.0:php7.0-7 commands: - - tests/acceptance/run-local.sh allow-git-repository-modifications features/access-levels.feature + - tests/acceptance/run-local.sh --timeout-multiplier 10 allow-git-repository-modifications features/access-levels.feature when: matrix: TESTS-ACCEPTANCE: access-levels acceptance-app-files: image: nextcloudci/php7.0:php7.0-7 commands: - - tests/acceptance/run-local.sh allow-git-repository-modifications features/app-files.feature + - tests/acceptance/run-local.sh --timeout-multiplier 10 allow-git-repository-modifications features/app-files.feature when: matrix: TESTS-ACCEPTANCE: app-files acceptance-login: image: nextcloudci/php7.0:php7.0-7 commands: - - tests/acceptance/run-local.sh allow-git-repository-modifications features/login.feature + - tests/acceptance/run-local.sh --timeout-multiplier 10 allow-git-repository-modifications features/login.feature when: matrix: TESTS-ACCEPTANCE: login |