File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -256,14 +256,14 @@ test_script:
256256 - ps : |
257257 Set-PSDebug -Trace 1
258258 if ($Env:WHEEL_PATH) {
259- $Env:PYTHON_HOME\Scripts\tox --wheel
259+ iex " $Env:PYTHON_HOME\Scripts\tox --wheel"
260260 if ($LastExitCode -eq 0) {
261261 $ErrorActionPreference = "Stop"
262262 iex "$Env:PYTHON_HOME\Scripts\twine check $Env:WHEEL_PATH/*.whl"
263263 iex "$Env:PYTHON_HOME\Scripts\twine upload --verbose --repository-url https://test.pypi.org/legacy/ --skip-existing $Env:WHEEL_PATH/*.whl"
264264 }
265265 } else {
266- $Env:PYTHON_HOME\Scripts\tox
266+ iex " $Env:PYTHON_HOME\Scripts\tox"
267267 }
268268 $result = $LastExitCode
269269 if ($result -ne 0) {
Original file line number Diff line number Diff line change @@ -61,14 +61,14 @@ test_script:
6161 - ps : |
6262 Set-PSDebug -Trace 1
6363 if ($Env:WHEEL_PATH) {
64- $Env:PYTHON_HOME\Scripts\tox --wheel
64+ iex " $Env:PYTHON_HOME\Scripts\tox --wheel"
6565 if ($LastExitCode -eq 0) {
6666 $ErrorActionPreference = "Stop"
6767 iex "$Env:PYTHON_HOME\Scripts\twine check $Env:WHEEL_PATH/*.whl"
6868 iex "$Env:PYTHON_HOME\Scripts\twine upload --verbose --repository-url https://test.pypi.org/legacy/ --skip-existing $Env:WHEEL_PATH/*.whl"
6969 }
7070 } else {
71- $Env:PYTHON_HOME\Scripts\tox
71+ iex " $Env:PYTHON_HOME\Scripts\tox"
7272 }
7373 $result = $LastExitCode
7474 if ($result -ne 0) {
You can’t perform that action at this time.
0 commit comments