Update project maturity status
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / appveyor.yml
1 # Copyright (c) 2017 GigaSpaces Technologies Ltd. All rights reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); you may
4 # not use this file except in compliance with the License. You may obtain
5 # a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 # License for the specific language governing permissions and limitations
13 # under the License.
14
15 environment:
16
17   TOX_ENV: pywin
18
19   matrix:
20     - PYTHON: "C:\\Python27"
21       PYTHON_VERSION: 2.7.8
22       PYTHON_ARCH: 32
23
24 build: false
25
26 install:
27   - SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
28   - ps: (new-object System.Net.WebClient).Downloadfile('https://bootstrap.pypa.io/get-pip.py', 'C:\Users\appveyor\get-pip.py')
29   - ps: Start-Process -FilePath "C:\Python27\python.exe" -ArgumentList "C:\Users\appveyor\get-pip.py" -Wait -Passthru
30
31 before_test:
32   - pip install virtualenv --upgrade
33   - virtualenv env
34   - 'env\Scripts\activate.bat'
35   - pip install tox
36
37 test_script:
38   - pip --version
39   - tox --version
40   - tox -e %TOX_ENV%