Skip to content

Commit e5ddefe

Browse files
committed
ci: fix ui tests directory
1 parent 7bfce76 commit e5ddefe

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ui-tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ jobs:
6464
include:
6565
- targetPlatform: StandaloneOSX
6666
runs-on: [self-hosted, macOS]
67-
test_script: test_mac.sh
67+
test_script: ./test_mac.sh
6868
- targetPlatform: StandaloneWindows64
6969
runs-on: [self-hosted, windows]
70-
test_script: test_windows.ps1
70+
test_script: ./test_windows.ps1
7171
- targetPlatform: Android
7272
runs-on: [ self-hosted, macOS ]
7373
test_script: browserstack-sdk pytest -s ./test/test_android.py
@@ -94,6 +94,9 @@ jobs:
9494
MAILSLURP_API_KEY: ${{ secrets.MAILSLURP_API_KEY }}
9595
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
9696
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
97-
working-directory: sample/Tests
98-
run: ${{ matrix.test_script }}
97+
run: |
98+
pwd
99+
ls -la
100+
cd sample/Tests
101+
./${{ matrix.test_script }}
99102

0 commit comments

Comments
 (0)