From 860cad0141d2688e223123f750d8e8c104a2a7ac Mon Sep 17 00:00:00 2001 From: carlosthe19916 <2582866+carlosthe19916@users.noreply.github.com> Date: Tue, 8 Oct 2024 13:30:59 +0200 Subject: [PATCH] task: disable ui tests until the backend can serve the latest version of the UI --- .github/workflows/ci.yaml | 6 ++++++ .github/workflows/nightly-main.yaml | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 397e3bd..c35aad8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,3 +11,9 @@ jobs: uses: ./.github/workflows/global-ci.yml with: operator_bundle: "ghcr.io/trustification/trustify-operator-bundle:latest" + # TODO + # We run this against ghcr.io/trustification/trustd:latest which does not contain the + # latest version of the UI. Therefore the UI tests will always fail. + # The repository https://github.com/trustification/trustify needs to find a way to continuously + # update the UI before this property is enabled + run_ui_tests: false \ No newline at end of file diff --git a/.github/workflows/nightly-main.yaml b/.github/workflows/nightly-main.yaml index 18eaad3..b72a862 100644 --- a/.github/workflows/nightly-main.yaml +++ b/.github/workflows/nightly-main.yaml @@ -13,4 +13,9 @@ jobs: api_tests_ref: main run_api_tests: true ui_tests_ref: main - run_ui_tests: true + # TODO + # We run this against ghcr.io/trustification/trustd:latest which does not contain the + # latest version of the UI. Therefore the UI tests will always fail. + # The repository https://github.com/trustification/trustify needs to find a way to continuously + # update the UI before this property is enabled + run_ui_tests: false