| Index: bootstrap/virtualenv/appveyor.yml
|
| diff --git a/bootstrap/virtualenv/appveyor.yml b/bootstrap/virtualenv/appveyor.yml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0d7ed7a458d69af0f5525889d0eedeac60096b65
|
| --- /dev/null
|
| +++ b/bootstrap/virtualenv/appveyor.yml
|
| @@ -0,0 +1,25 @@
|
| +environment:
|
| +
|
| + matrix:
|
| + # For Python versions available on Appveyor, see
|
| + # http://www.appveyor.com/docs/installed-software#python
|
| +
|
| + - PYTHON: "C:\\Python26"
|
| + - PYTHON: "C:\\Python27"
|
| + - PYTHON: "C:\\Python33"
|
| + - PYTHON: "C:\\Python34"
|
| + - PYTHON: "C:\\Python35"
|
| + - PYTHON: "C:\\Python26-x64"
|
| + - PYTHON: "C:\\Python27-x64"
|
| + - PYTHON: "C:\\Python33-x64"
|
| + - PYTHON: "C:\\Python34-x64"
|
| + - PYTHON: "C:\\Python35-x64"
|
| +
|
| +install:
|
| + # We need tox installed for the tests
|
| + - "%PYTHON%\\Scripts\\pip.exe install tox"
|
| +
|
| +build: off
|
| +
|
| +test_script:
|
| + - "%PYTHON%\\Scripts\\tox.exe -e py"
|
|
|