diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-10 19:10:24 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-11 08:40:49 +0100 |
commit | 49f7d08b38da58e028bc074b205009b78ba10c09 (patch) | |
tree | 0f7a132d8f29921190764725f1bbe41be5419971 | |
parent | 72fb176ec999426048a7119862f4bf1ef8d2c34f (diff) | |
download | nextcloud-server-49f7d08b38da58e028bc074b205009b78ba10c09.tar.gz nextcloud-server-49f7d08b38da58e028bc074b205009b78ba10c09.zip |
Also execute the new tests on drone
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | .drone.yml | 25 | ||||
-rw-r--r-- | build/integration/collaboration_features/autocomplete.feature | 7 |
2 files changed, 32 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 26124e8753e..dfea98a59b0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -756,6 +756,31 @@ trigger: --- kind: pipeline +name: integration-collaboration_features + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --init +- name: integration-collaboration_features + image: nextcloudci/integration-php7.3:integration-php7.3-2 + commands: + - bash tests/drone-run-integration-tests.sh || exit 0 + - ./occ maintenance:install --admin-pass=admin --data-dir=/dev/shm/nc_int + - cd build/integration + - ./run.sh collaboration_features/ + +trigger: + branch: + - master + - stable* + event: + - pull_request + - push + +--- +kind: pipeline name: integration-federation_features steps: diff --git a/build/integration/collaboration_features/autocomplete.feature b/build/integration/collaboration_features/autocomplete.feature index 5e294709d7f..e20993e420e 100644 --- a/build/integration/collaboration_features/autocomplete.feature +++ b/build/integration/collaboration_features/autocomplete.feature @@ -12,6 +12,13 @@ Feature: autocomplete Given As an "admin" When get autocomplete for "auto" | id | source | + | auto | users | + | autocomplete | users | + | autocomplete2 | users | + When parameter "shareapi_restrict_user_enumeration_full_match" of app "core" is set to "no" + Then get autocomplete for "auto" + | id | source | + | auto | users | | autocomplete | users | | autocomplete2 | users | |