加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
appveyor.yml 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
Hugo 提交于 2019-11-25 10:05 . Don't test CI on Python 2.7
# What Python version is installed where:
# http://www.appveyor.com/docs/installed-software#python
environment:
matrix:
- PYTHON: "C:\\Python35"
TOX_ENV: "py35"
- PYTHON: "C:\\Python35-x64"
TOX_ENV: "py35"
- PYTHON: "C:\\Python36"
TOX_ENV: "py36"
- PYTHON: "C:\\Python36-x64"
TOX_ENV: "py36"
- PYTHON: "C:\\Python37"
TOX_ENV: "py37"
- PYTHON: "C:\\Python37-x64"
TOX_ENV: "py37"
- PYTHON: "C:\\Python38"
TOX_ENV: "py38"
- PYTHON: "C:\\Python38-x64"
TOX_ENV: "py38"
init:
- set PATH=%PYTHON%;%PYTHON%\Scripts;C:\MinGW\msys\1.0\bin;%PATH%
- "git config --system http.sslcainfo \"C:\\Program Files\\Git\\mingw64\\ssl\\certs\\ca-bundle.crt\""
- "%PYTHON%/python -V"
- "%PYTHON%/python -c \"import struct;print(8 * struct.calcsize(\'P\'))\""
install:
- "%PYTHON%/Scripts/easy_install -U pip"
- "%PYTHON%/Scripts/pip install -U tox virtualenv"
- "%PYTHON%/Scripts/pip install wheel"
build: false # Not a C# project, build stuff at the test step instead.
test_script:
- "%PYTHON%/Scripts/tox -e %TOX_ENV%"
after_test:
- "%PYTHON%/python setup.py --command-packages wheel bdist_wheel"
- ps: "ls dist"
artifacts:
- path: dist\*
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化