From a2c6cf1085b75c3fb4eda85a22ce8f8d71797b0d Mon Sep 17 00:00:00 2001 From: HiteshRepo Date: Sun, 28 Jan 2024 21:25:59 +0530 Subject: [PATCH] fix test log dir --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e42b7d62f..91f8646e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -312,7 +312,7 @@ jobs: -p 1 \ -timeout 20m \ -run '^TestSharePointBackupUnitSuite/TestPopulateListsCollections_incremental$' ./internal/m365/collection/site \ - 2>&1 | tee -a ./testlog/gotest-unit.log + 2>&1 | tee -a /tmp/corso-testlog/gotest-unit.log # Run the second test go test \ @@ -321,7 +321,7 @@ jobs: -p 1 \ -timeout 20m \ -run '^TestSharePointBackupUnitSuite/TestCollectLists$' ./internal/m365/collection/site \ - 2>&1 | tee -a ./testlog/gotest-unit.log + 2>&1 | tee -a /tmp/corso-testlog/gotest-unit.log # Run the third test go test \ @@ -330,7 +330,7 @@ jobs: -p 1 \ -timeout 20m \ -run '^TestExportUnitSuite/TestStreamItems$' ./internal/m365/collection/site \ - 2>&1 | tee -a ./testlog/gotest-unit.log + 2>&1 | tee -a /tmp/corso-testlog/gotest-unit.log # - name: all tests # env: