Merge "vFW and vDNS support added to azure-plugin"
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / .travis.yml
diff --git a/azure/aria/aria-extension-cloudify/.travis.yml b/azure/aria/aria-extension-cloudify/.travis.yml
new file mode 100644 (file)
index 0000000..dc57eae
--- /dev/null
@@ -0,0 +1,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.
+  
\ No newline at end of file