2019-09-04 08:54:24 +00:00
|
|
|
# appveyor.yml
|
|
|
|
---
|
2019-09-19 16:23:09 +00:00
|
|
|
|
|
|
|
environment:
|
2019-09-23 12:05:28 +00:00
|
|
|
# Encrypted password (more precisely: token) for upload distro to pypy:
|
2019-09-19 16:23:09 +00:00
|
|
|
# The "pypipw" is a custom name.
|
|
|
|
# The original (sensitive) token is generated by the pypi: https://pypi.org/manage/account/token/
|
|
|
|
# The token has encripted by the appveyor: https://ci.appveyor.com/tools/encrypt
|
|
|
|
pypipw:
|
|
|
|
secure: N+tYP6JrVCZ12LX7MUmHYJ8kx07F4A1hXtmEW01RmhrrQBdylIf0SO/eEfW5f4ox3S4xG/lgGSzNlZckvgifrsYeeBkWwoSH5/AJ3SnOJ7HBVojVt2t3bAznS6x3aPT7WDpwGN7piwus9aHSmpKaOzRoEOBKfgHv3aUzb907C0d0Yr12LU/4cIoTAn7jMziifSq45Z50lsQwzYic/VkarxTh+GXuCCm1Mb8F686H8i6Smm1Q1n9BsXowYnzwdrTZSBVOUtpd48Mh9JKgSNhfmQ==
|
|
|
|
testpypipw:
|
|
|
|
secure: CcyBI8e/2LdIT2aYIytTAgR4795DNBDM/ztsz1kqZYYOeNc3zlJWLdYWrnjCHn5W6/ZcAHrsxCdCMHvtr6PIVgBRpl2RR3fk2jKTzKqJJsLW871q30BsE0kws32f1IiqfjVtLn8BUC91IJ2xBBXtOYktf1tCMi3zJMSF9+MIOQKIu298bIRnD1Lc+4lzcSZJOn4I7dOMdzlcCMRqhtO58TGwR/hD+22FHjyWVB8nLL18AO+XXS9lHSOUrH6rD5NYvVFZD68oV/RrCGAjRmfMnw==
|
|
|
|
|
2020-02-03 12:34:32 +00:00
|
|
|
matrix:
|
2020-02-03 12:39:45 +00:00
|
|
|
# Pre-installed Python versions, which Appveyor may upgrade to
|
|
|
|
# a later point release.
|
|
|
|
# See: http://www.appveyor.com/docs/installed-software#python
|
|
|
|
|
|
|
|
- PYTHON: "C:\\Python37"
|
|
|
|
PYTHON_VERSION: "3.7.x"
|
|
|
|
PYTHON_ARCH: "32"
|
2020-02-03 12:34:32 +00:00
|
|
|
|
2019-09-04 08:54:24 +00:00
|
|
|
build: off
|
|
|
|
|
|
|
|
install:
|
2020-02-03 12:59:38 +00:00
|
|
|
- C:\\Python37\\python -m pip install .[test]
|
2019-09-04 08:54:24 +00:00
|
|
|
|
|
|
|
test_script:
|
2020-02-03 11:08:49 +00:00
|
|
|
- cmd: set WEXPECT_SPAWN_CLASS=SpawnPipe
|
2020-02-03 14:44:55 +00:00
|
|
|
- cmd: set WEXPECT_LOGGER_LEVEL=DEBUG
|
|
|
|
- cmd: C:\\Python37\\python issues\appveyor.py
|
2020-02-01 20:34:34 +00:00
|
|
|
|
2020-02-03 11:08:49 +00:00
|
|
|
after_test:
|
2020-02-01 20:34:34 +00:00
|
|
|
- python dump_logs.py
|
2019-09-05 14:20:37 +00:00
|
|
|
|
2020-02-03 11:08:49 +00:00
|
|
|
#on_failure:
|
|
|
|
# - python dump_logs.py
|