Skip to content

Commit bf3da9a

Browse files
committed
Verbose uploads. Order images.
1 parent f94a787 commit bf3da9a

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: '{branch}-{build}'
22
build: off
33
image:
4-
- Visual Studio 2019
54
- Visual Studio 2015
5+
- Visual Studio 2019
66
matrix:
77
exclude:
88
- image: Visual Studio 2019
@@ -260,7 +260,7 @@ test_script:
260260
if ($LastExitCode -eq 0) {
261261
$ErrorActionPreference = "Stop"
262262
iex "$Env:PYTHON_HOME\Scripts\twine check $Env:WHEEL_PATH/*.whl"
263-
iex "$Env:PYTHON_HOME\Scripts\twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing $Env:WHEEL_PATH/*.whl"
263+
iex "$Env:PYTHON_HOME\Scripts\twine upload --verbose --repository-url https://test.pypi.org/legacy/ --skip-existing $Env:WHEEL_PATH/*.whl"
264264
}
265265
} else {
266266
cmd /E:ON /V:ON /C .\ci\appveyor-with-compiler.cmd $Env:PYTHON_HOME\Scripts\tox

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ script:
338338
fi
339339
if [[ -n ${WHEEL_PATH:-} ]]; then
340340
twine check $WHEEL_PATH/*.whl
341-
twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing $WHEEL_PATH/*.whl
341+
twine upload --verbose --repository-url https://test.pypi.org/legacy/ --skip-existing $WHEEL_PATH/*.whl
342342
fi
343343
)
344344
after_failure:

ci/templates/.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: '{branch}-{build}'
22
build: off
33
image:
4-
- Visual Studio 2019
54
- Visual Studio 2015
5+
- Visual Studio 2019
66
matrix:
77
exclude:
88
- image: Visual Studio 2019
@@ -65,7 +65,7 @@ test_script:
6565
if ($LastExitCode -eq 0) {
6666
$ErrorActionPreference = "Stop"
6767
iex "$Env:PYTHON_HOME\Scripts\twine check $Env:WHEEL_PATH/*.whl"
68-
iex "$Env:PYTHON_HOME\Scripts\twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing $Env:WHEEL_PATH/*.whl"
68+
iex "$Env:PYTHON_HOME\Scripts\twine upload --verbose --repository-url https://test.pypi.org/legacy/ --skip-existing $Env:WHEEL_PATH/*.whl"
6969
}
7070
} else {
7171
cmd /E:ON /V:ON /C .\ci\appveyor-with-compiler.cmd $Env:PYTHON_HOME\Scripts\tox

ci/templates/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ script:
105105
fi
106106
if [[ -n ${WHEEL_PATH:-} ]]; then
107107
twine check $WHEEL_PATH/*.whl
108-
twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing $WHEEL_PATH/*.whl
108+
twine upload --verbose --repository-url https://test.pypi.org/legacy/ --skip-existing $WHEEL_PATH/*.whl
109109
fi
110110
)
111111
after_failure:

0 commit comments

Comments
 (0)