зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
468 B
YAML
25 строки
468 B
YAML
environment:
|
|
|
|
APPVEYOR: true
|
|
|
|
matrix:
|
|
- PYTHON: "C:\\Python36-x64"
|
|
- PYTHON: "C:\\Python38-x64"
|
|
|
|
install:
|
|
# symlink python from a directory with a space
|
|
- "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
|
|
- "SET PYTHON=\"C:\\Program Files\\Python\""
|
|
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
|
|
|
build: off
|
|
|
|
cache:
|
|
- '%LOCALAPPDATA%\pip\Cache'
|
|
|
|
test_script:
|
|
- "python -m pip install -U tox tox-venv virtualenv"
|
|
- "tox"
|
|
|
|
version: '{build}'
|