From d194828c4411453f2f84344fdfe3c1474bb05ff1 Mon Sep 17 00:00:00 2001 From: hitanshu310 Date: Sat, 15 Nov 2025 01:22:29 +0530 Subject: [PATCH 1/2] ISSUE-44: Hithomelabs/HomeLabDocker#44 Executing integration test every 6 hours --- .gitea/workflows/integration_test.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/integration_test.yaml b/.gitea/workflows/integration_test.yaml index 3a4697c..688f37b 100644 --- a/.gitea/workflows/integration_test.yaml +++ b/.gitea/workflows/integration_test.yaml @@ -1,10 +1,8 @@ name: Daily cloudflare API integration test on: - push: - branches: [ test ] -# schedule: -# - cron: '0 * * * *' # Every hour -# workflow_dispatch: + schedule: + - cron: '0 */6 * * *' # Every hour + workflow_dispatch: jobs: cloudflare-api-test: -- 2.45.2 From 95ec64630a84950f5c7091880bcc00452e1de232 Mon Sep 17 00:00:00 2001 From: hitanshu310 Date: Sat, 15 Nov 2025 01:27:32 +0530 Subject: [PATCH 2/2] ISSUE-44: Hithomelabs/HomeLabDocker#44 making tests more verbose --- build.gradle | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build.gradle b/build.gradle index c85d1f3..0800341 100644 --- a/build.gradle +++ b/build.gradle @@ -18,6 +18,11 @@ test { useJUnitPlatform { excludeTags 'integration' } + testLogging { + events "passed", "skipped", "failed", "standardOut", "standardError" + exceptionFormat "full" // shows full stack trace + showStandardStreams = true // shows println/log output + } } tasks.register('integrationTestOnly', Test) { @@ -26,6 +31,11 @@ tasks.register('integrationTestOnly', Test) { } description = 'Runs only integration tests tagged with @Tag("integration")' group = 'verification' + testLogging { + events "passed", "skipped", "failed" + exceptionFormat "full" + showStandardStreams = true + } } repositories { -- 2.45.2