summaryrefslogtreecommitdiffstats
path: root/azure/aria/aria-extension-cloudify/.travis.yml
blob: dc57eaee081e1433df79b82673c2777e7ac812e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright (c) 2016 GigaSpaces Technologies Ltd. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.

sudo: false

language: python

python:
  - '2.7'
  - '2.6'

env:
  - TOX_ENV=flake8
  - TOX_ENV=py27
  - TOX_ENV=py26

matrix:
  # since python2.6 no longer comes with the default travis machine, we need to specify it
  # explicitly. Since it doesn't make sense to require a machine with python 2.6 to run python2.7
  # tests, we remove any redundant tests via the exclude matrix.
  exclude:
  - python: '2.6'
    env: TOX_ENV=flake8
  - python: '2.6'
    env: TOX_ENV=py27
  - python: '2.7'
    env: TOX_ENV=py26


install:
  - pip install --upgrade pip
  - pip install tox

script:
  - pip --version
  - tox --version
  - PYTEST_PROCESSES=1 tox -e $TOX_ENV

# The PYTEST_PROCESSES environment var is used in tox.ini to override the --numprocesses argument
# for PyTest's xdist plugin. The reason this is necessary is that conventional Travis environments
# may report a large amount of available CPUs, but they they are greatly restricted. Through trial
# and error we found that more than 1 process may result in failures.