aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.appveyor.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 785e7dcc..ef0e59d7 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