From dcd2604e2a84e47fd925ac6b322e20e9dbbcd76c Mon Sep 17 00:00:00 2001 From: abose Date: Sun, 15 Oct 2023 17:54:56 +0530 Subject: [PATCH] fix: tauri windows integration test not running --- .github/workflows/desktop-windows-test-pull.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/desktop-windows-test-pull.yml b/.github/workflows/desktop-windows-test-pull.yml index 290896fe4..026cbbfde 100644 --- a/.github/workflows/desktop-windows-test-pull.yml +++ b/.github/workflows/desktop-windows-test-pull.yml @@ -36,7 +36,7 @@ jobs: with: timeout_minutes: 12 max_attempts: 3 - command: "src-tauri\target\release\phoenix-test.exe" --run-tests=unit -q > output-unit.txt 2>&1 + command: ..\phoenix-desktop\src-tauri\target\release\phoenix-test.exe --run-tests=unit -q > output-unit.txt 2>&1 shell: cmd - name: Print windows unit test output to console @@ -50,7 +50,7 @@ jobs: with: timeout_minutes: 12 max_attempts: 3 - command: "src-tauri\target\release\phoenix-test.exe" --run-tests=integration -q > output-integration.txt 2>&1 + command: ..\phoenix-desktop\src-tauri\target\release\phoenix-test.exe --run-tests=integration -q > output-integration.txt 2>&1 shell: cmd - name: Print windows integration test output to console @@ -64,7 +64,7 @@ jobs: with: timeout_minutes: 12 max_attempts: 3 - command: "src-tauri\target\release\phoenix-test.exe" --run-tests=mainview -q > output-mainview.txt 2>&1 + command: ..\phoenix-desktop\src-tauri\target\release\phoenix-test.exe --run-tests=mainview -q > output-mainview.txt 2>&1 shell: cmd - name: Print windows mainview test output to console @@ -78,7 +78,7 @@ jobs: with: timeout_minutes: 12 max_attempts: 3 - command: "src-tauri\target\release\phoenix-test.exe" --run-tests=LegacyInteg -q > output-LegacyInteg.txt 2>&1 + command: ..\phoenix-desktop\src-tauri\target\release\phoenix-test.exe --run-tests=LegacyInteg -q > output-LegacyInteg.txt 2>&1 shell: cmd - name: Print windows LegacyInteg test output to console