From a9e34e9b40a1debce5d1e1e6f9997b8ccf5d5752 Mon Sep 17 00:00:00 2001 From: Jigar-f Date: Mon, 25 Nov 2024 18:41:18 +0530 Subject: [PATCH] update actions. --- .github/workflows/test.yml | 1 + Makefile | 2 +- integration_test/run_test.sh | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e1f8f323..503f60dcb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -85,6 +85,7 @@ jobs: - name: Running workflow test for macos run: make desktopWorkflowTest + timeout-minutes: 60 - name: Running workflow test for android on Firebase test labs run: make ci-android-test diff --git a/Makefile b/Makefile index 315a317fb..6b338f92a 100644 --- a/Makefile +++ b/Makefile @@ -808,5 +808,5 @@ ci-android-test:test-build-android #Runs widget tets widget-tests: @echo "Running widget tests..." - flutter test test/ -r expanded + flutter test test/ diff --git a/integration_test/run_test.sh b/integration_test/run_test.sh index c44f579e0..b2755e16d 100644 --- a/integration_test/run_test.sh +++ b/integration_test/run_test.sh @@ -1,7 +1,6 @@ # Find all _test.dart files in the integration_test directory and its immediate subdirectories find integration_test -maxdepth 4 -type f -name '*_test.dart' | while read test_file; do -# echo "Running $test_file..." - flutter test "$test_file" -d macOS + flutter test "$test_file" -d macOS --verbose if [ $? -ne 0 ]; then echo "Test $test_file failed." continue