Browse Source

Enable object storage tests again

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
tags/v13.0.0beta1
Morris Jobke 6 years ago
parent
commit
4ee4d15f01
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      .drone.yml
  2. 1
    1
      tests/preseed-config.php

+ 2
- 2
.drone.yml View File

@@ -773,8 +773,8 @@ matrix:
- TESTS: caldavtester-new-endpoint
- TESTS: carddavtester-new-endpoint
- TESTS: carddavtester-old-endpoint
# - TESTS: object-store
# OBJECT_STORE: s3
- TESTS: object-store
OBJECT_STORE: s3
- TESTS: sqlite-php7.0-samba-native
- TESTS: sqlite-php7.0-samba-non-native
- TEST: memcache-memcached

+ 1
- 1
tests/preseed-config.php View File

@@ -26,7 +26,7 @@ if (getenv('OBJECT_STORE') === 's3') {
'autocreate' => true,
'key' => 'dummy',
'secret' => 'dummy',
'hostname' => 'localhost',
'hostname' => getenv('DRONE') === 'true' ? 'fake-s3' : 'localhost',
'port' => 4569,
'use_ssl' => false,
// required for some non amazon s3 implementations

Loading…
Cancel
Save