Browse Source

Merge pull request #2559 from pallets/fix-appveyor

Better appveyor config
pull/2558/head
David Lord 7 years ago committed by GitHub
parent
commit
eab030f9f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      .appveyor.yml

11
.appveyor.yml

@ -3,16 +3,21 @@ environment:
TOXENV: "py"
matrix:
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
init:
- SET PATH=%PYTHON%;%PATH%
- python -c "import sys;sys.stdout.write(sys.version)"
install:
- "%PYTHON%\\python.exe -m pip install -U pip setuptools wheel tox"
- python -m pip install -U pip setuptools wheel tox
build: false
test_script:
- "%PYTHON%\\python.exe -m tox"
- python -m tox
branches:
only:

Loading…
Cancel
Save