File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -64,10 +64,10 @@ jobs:
64
64
include :
65
65
- targetPlatform : StandaloneOSX
66
66
runs-on : [self-hosted, macOS]
67
- test_script : test_mac.sh
67
+ test_script : ./ test_mac.sh
68
68
- targetPlatform : StandaloneWindows64
69
69
runs-on : [self-hosted, windows]
70
- test_script : test_windows.ps1
70
+ test_script : ./ test_windows.ps1
71
71
- targetPlatform : Android
72
72
runs-on : [ self-hosted, macOS ]
73
73
test_script : browserstack-sdk pytest -s ./test/test_android.py
94
94
MAILSLURP_API_KEY : ${{ secrets.MAILSLURP_API_KEY }}
95
95
BROWSERSTACK_USERNAME : ${{ secrets.BROWSERSTACK_USERNAME }}
96
96
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 }}
99
102
You can’t perform that action at this time.
0 commit comments