Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
kind: pipeline
type: docker
name: tests-stable
timeout: 90

# SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
Expand Down Expand Up @@ -72,6 +73,7 @@ trigger:
kind: pipeline
type: docker
name: tests-master
timeout: 90

steps:
- name: gplay
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import org.junit.Assert.assertEquals
import org.junit.Assert.assertFalse
import org.junit.Assert.assertTrue
import org.junit.Before
import org.junit.Ignore
import org.junit.Test
import kotlin.random.Random

Expand Down Expand Up @@ -195,6 +196,7 @@ class DocumentsStorageProviderIT : AbstractOnServerIT() {

@Suppress("MagicNumber")
@Test(timeout = 5 * 60 * 1000)
@Ignore("Problem with endless sleep")
fun testServerChangedFileContent() {
// create random file
val file1 = rootDir.createFile("text/plain", RandomStringGenerator.make())!!
Expand Down Expand Up @@ -234,6 +236,7 @@ class DocumentsStorageProviderIT : AbstractOnServerIT() {
}

@Test
@Ignore("Problem with endless sleep")
fun testServerSuccessive() {
// create random file
val file1 = rootDir.createFile("text/plain", RandomStringGenerator.make())!!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import org.junit.Ignore
import org.junit.Test
import java.io.File

@Ignore("Investigating Drone CI timeout")
class PreviewImageActivityIT : AbstractOnServerIT() {
companion object {
private const val REMOTE_FOLDER: String = "/PreviewImageActivityIT/"
Expand Down
Loading