Update project maturity status
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / tox.ini.bkp
1 # Copyright (c) 2016 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 [tox]
16 envlist=py27,py26,pywin,flake8code,flake8tests
17 processes={env:PYTEST_PROCESSES:auto}
18
19 [testenv]
20 deps =
21   --requirement
22     requirements.txt
23   --requirement
24     aria_extension_tests/requirements.txt
25 basepython =
26   py26: python2.6
27   py27: python2.7
28   flake8: python2.7
29   pywin: {env:PYTHON:}\python.exe
30
31 [testenv:py27]
32 commands=
33   pytest aria_extension_tests \
34     --numprocesses={[tox]processes} \
35     --cov-report term-missing \
36     --cov adapters
37
38 [testenv:py26]
39 commands=
40   pytest aria_extension_tests \
41     --numprocesses={[tox]processes} \
42     --cov-report term-missing \
43     --cov adapters
44
45 [testenv:pywin]
46 commands=
47   pytest aria_extension_tests \
48     --numprocesses={[tox]processes} \
49     --cov-report term-missing \
50     --cov adapters
51
52 [testenv:flake8code]
53 commands=flake8 adapters
54
55 [testenv:flake8tests]
56 commands=flake8 aria_extension_tests