Also execute the new tests on drone
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
cf8f9c16df
commit
1683e0289b
25
.drone.yml
25
.drone.yml
|
@ -754,6 +754,31 @@ trigger:
|
||||||
- pull_request
|
- pull_request
|
||||||
- push
|
- push
|
||||||
|
|
||||||
|
---
|
||||||
|
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
|
kind: pipeline
|
||||||
name: integration-federation_features
|
name: integration-federation_features
|
||||||
|
|
|
@ -12,6 +12,13 @@ Feature: autocomplete
|
||||||
Given As an "admin"
|
Given As an "admin"
|
||||||
When get autocomplete for "auto"
|
When get autocomplete for "auto"
|
||||||
| id | source |
|
| 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 |
|
| autocomplete | users |
|
||||||
| autocomplete2 | users |
|
| autocomplete2 | users |
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue