From 93e515c02ff811a1e721c4a4e89396382576ce86 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 26 Jun 2015 18:24:33 +0200 Subject: [PATCH] appveyor: use explicit python version --- .appveyor.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 785e7dccc..ef0e59d72 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,7 +1,10 @@ shallow_clone: true +environment: + matrix: + - PYTHON: "C:\\Python27" install: - - ps: "pip install --src . -r requirements.txt" - - ps: "python -c 'from OpenSSL import SSL; print SSL.SSLeay_version(SSL.SSLEAY_VERSION)'" + - "%PYTHON%\\Scripts\\pip install --src . -r requirements.txt" + - "%PYTHON%\\python -c \"from OpenSSL import SSL; print SSL.SSLeay_version(SSL.SSLEAY_VERSION)\"" build: off # Not a C# project test_script: - - ps: "nosetests --with-cov --cov-report term-missing" \ No newline at end of file + - "%PYTHON%\\Scripts\nosetests --with-cov --cov-report term-missing" \ No newline at end of file