Skip to content

Commit 7f4d247

Browse files
committed
Remove old cruft from appveyor config.
1 parent bcd14ea commit 7f4d247

3 files changed

Lines changed: 4 additions & 16 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-
cmd /E:ON /V:ON /C .\ci\appveyor-with-compiler.cmd $Env:PYTHON_HOME\Scripts\tox --wheel
259+
$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-
cmd /E:ON /V:ON /C .\ci\appveyor-with-compiler.cmd $Env:PYTHON_HOME\Scripts\tox
266+
$Env:PYTHON_HOME\Scripts\tox
267267
}
268268
$result = $LastExitCode
269269
if ($result -ne 0) {

ci/appveyor-with-compiler.cmd

Lines changed: 0 additions & 12 deletions
This file was deleted.

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-
cmd /E:ON /V:ON /C .\ci\appveyor-with-compiler.cmd $Env:PYTHON_HOME\Scripts\tox --wheel
64+
$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-
cmd /E:ON /V:ON /C .\ci\appveyor-with-compiler.cmd $Env:PYTHON_HOME\Scripts\tox
71+
$Env:PYTHON_HOME\Scripts\tox
7272
}
7373
$result = $LastExitCode
7474
if ($result -ne 0) {

0 commit comments

Comments
 (0)