diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2021-01-31 23:10:55 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2021-04-23 11:44:42 +0200 |
commit | e2c4a174f2f19761a30125bb35b348258d4c118f (patch) | |
tree | 2f608ce2eff9ca6900db30f4670317a7762fa8f8 /.drone.yml | |
parent | 67dd087ce46794580a29fdfcf4776665349f3a3a (diff) | |
download | nextcloud-server-e2c4a174f2f19761a30125bb35b348258d4c118f.tar.gz nextcloud-server-e2c4a174f2f19761a30125bb35b348258d4c118f.zip |
Add integration tests for searching users in contacts menu
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index d2059b766b5..4a2df572dac 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1166,6 +1166,31 @@ trigger: --- kind: pipeline +name: integration-contacts-menu + +steps: +- name: submodules + image: docker:git + commands: + - git submodule update --init +- name: integration-contacts-menu + 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 features/contacts-menu.feature + +trigger: + branch: + - master + - stable* + event: + - pull_request + - push + +--- +kind: pipeline name: integration-favorites steps: |