appveyor: use explicit python version

This commit is contained in:
Maximilian Hils 2015-06-26 18:24:33 +02:00
parent 2fb3d6caed
commit 93e515c02f
1 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
shallow_clone: true shallow_clone: true
environment:
matrix:
- PYTHON: "C:\\Python27"
install: install:
- ps: "pip install --src . -r requirements.txt" - "%PYTHON%\\Scripts\\pip install --src . -r requirements.txt"
- ps: "python -c 'from OpenSSL import SSL; print SSL.SSLeay_version(SSL.SSLEAY_VERSION)'" - "%PYTHON%\\python -c \"from OpenSSL import SSL; print SSL.SSLeay_version(SSL.SSLEAY_VERSION)\""
build: off # Not a C# project build: off # Not a C# project
test_script: test_script:
- ps: "nosetests --with-cov --cov-report term-missing" - "%PYTHON%\\Scripts\nosetests --with-cov --cov-report term-missing"