File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -169,15 +169,9 @@ jobs:
169169 echo 'GYP_MSVS_OVERRIDE_PATH=C:\\Dummy' >> $Env:GITHUB_ENV
170170 - name : Run Python Tests
171171 run : python -m pytest
172- - name : Run Tests (macOS or Linux)
173- if : runner.os != 'Windows'
174- shell : bash
175- run : npm test --python="${pythonLocation}/python"
172+ - run : echo "pythonLocation=${pythonLocation}"
173+ - run : echo "env:pythonLocation=${env:pythonLocation}"
174+ - run : env
175+ - run : npm test
176176 env :
177177 FULL_TEST : ${{ (matrix.node == '24.x' && matrix.python == '3.14') && '1' || '0' }}
178- - name : Run Tests (Windows)
179- if : runner.os == 'Windows'
180- shell : bash # Building wasm on Windows requires using make generator, it only works in bash
181- run : npm run test --python="${pythonLocation}\\python.exe"
182- env :
183- FULL_TEST : ${{ (matrix.node == '24.x' && matrix.python == '3.13') && '1' || '0' }}
Original file line number Diff line number Diff line change 3333 python-version : " 3.x"
3434 - name : Install Dependencies
3535 run : npm install
36+ - run : echo "pythonLocation=${pythonLocation}"
37+ - run : echo "env:pythonLocation=${env:pythonLocation}"
38+ - run : env
3639 - name : Run Node tests
37- shell : pwsh
38- run : npm run test --python="${env:pythonLocation}\\python.exe" --msvs-version="${{ matrix.msvs-version }}"
40+ run : npm run test
Original file line number Diff line number Diff line change @@ -57,14 +57,10 @@ jobs:
5757 run : |
5858 rm -rf node-gyp/gyp
5959 cp -r gyp-next node-gyp/gyp
60- - name : Run tests (macOS or Linux)
61- if : runner.os != 'Windows'
60+ - run : echo "pythonLocation=${pythonLocation}"
61+ - run : echo "env:pythonLocation=${env:pythonLocation}"
62+ - run : env
63+ - name : Run tests
6264 run : |
6365 cd node-gyp
64- npm test --python="${pythonLocation}/python"
65- - name : Run tests (Windows)
66- if : runner.os == 'Windows'
67- shell : pwsh
68- run : |
69- cd node-gyp
70- npm run test --python="${env:pythonLocation}\\python.exe"
66+ npm test
You can’t perform that action at this time.
0 commit comments