Test Framework - new Forms test suite. (#43894)

Signed-off-by: Lukas Hanusovsky <lhanusov@redhat.com>
This commit is contained in:
Lukas Hanusovsky
2025-11-03 16:15:10 +01:00
committed by GitHub
parent 0dbcfeb9d0
commit 5aa05d08eb
2 changed files with 15 additions and 0 deletions

View File

@@ -756,6 +756,10 @@ jobs:
echo "Tests: $TESTS"
./mvnw test ${{ env.SUREFIRE_RETRY }} -Pauth-server-quarkus -Dtest=$TESTS -Dbrowser=${{ matrix.browser }} -f testsuite/integration-arquillian/tests/base/pom.xml 2>&1 | misc/log/trimmer.sh
- name: Run new Forms IT
run: |
./mvnw package -f tests/pom.xml -Dkc.test.browser=${{ matrix.browser }} -Dtest=FormsTestSuite
- uses: ./.github/actions/upload-flaky-tests
name: Upload flaky tests
env:

View File

@@ -0,0 +1,11 @@
package org.keycloak.tests.suites;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;
import org.keycloak.tests.admin.AdminHeadersTest;
@Suite
// TODO: Select relevant test classes or packages once they have been migrated
@SelectClasses({AdminHeadersTest.class})
public class FormsTestSuite {
}