appveyor: use explicit python version
This commit is contained in:
parent
2fb3d6caed
commit
93e515c02f
|
@ -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"
|
Loading…
Reference in New Issue