Skip to content
Closed
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
30 changes: 30 additions & 0 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: acceptance-users

on:
pull_request:
push:
branches:
- master
- stable*

jobs:
acceptance:
runs-on: ghcr.io/nextcloud/continuous-integration-alpine-git:latest

strategy:
fail-fast: false

name: acceptance

services:
selenium:
image: ghcr.io/nextcloud/continuous-integration-selenium:3.141.59
ports: ["4444:4444"]
env:
# Reduce default log level for Selenium server (INFO) as it is too
# verbose.
JAVA_OPTS: -Dselenium.LOGGER.level=WARNING

steps:
- name: Acceptance tests
run: tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-users --selenium-server selenium:4444 allow-git-repository-modifications features/users.feature
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public function iSeeThatTheListOfUsersContainsTheUser($user) {
if (!WaitFor::elementToBeEventuallyShown(
$this->actor,
self::rowForUser($user),
$timeout = 10 * $this->actor->getFindTimeoutMultiplier())) {
$timeout = 15 * $this->actor->getFindTimeoutMultiplier())) {
Assert::fail("The user $user in the list of users is not shown yet after $timeout seconds");
}
}
Expand Down