1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
environment:
PYTHONASYNCIODEBUG: "1"
PLATFORM: "mswin"
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
- PYTHON: "C:\\Python35"
INTERP: "py35"
- PYTHON: "C:\\Python35-x64"
INTERP: "py35"
- PYTHON: "C:\\Python36-x64"
INTERP: "py36"
install:
- "%PYTHON%\\python.exe -m pip install tox"
- "%PYTHON%\\python.exe setup.py egg_info"
- "%PYTHON%\\python.exe -m pip install -r aiosmtpd.egg-info/requires.txt"
build: off
test_script:
- "%PYTHON%\\python.exe -m tox -e %INTERP%-nocov,%INTERP%-cov"
|