diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-06-26 18:24:33 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-06-26 18:24:33 +0200 |
commit | 93e515c02ff811a1e721c4a4e89396382576ce86 (patch) | |
tree | 5d3526d09cc68a079eab524b175bad6de9e6c049 /.appveyor.yml | |
parent | 2fb3d6caed229ac1900561e2f1a5289694fd2dd3 (diff) | |
download | mitmproxy-93e515c02ff811a1e721c4a4e89396382576ce86.tar.gz mitmproxy-93e515c02ff811a1e721c4a4e89396382576ce86.tar.bz2 mitmproxy-93e515c02ff811a1e721c4a4e89396382576ce86.zip |
appveyor: use explicit python version
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 9 |
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 |