Skip to content

Commit 1aaf849

Browse files
committed
Fiiiiix.
1 parent 7f4d247 commit 1aaf849

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

ci/templates/.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)