summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2015-07-13 11:53:28 +0200
committerSimo Sorce <simo@redhat.com>2015-07-27 06:53:14 -0400
commitde85fcc1b0c882c1f0447dfade44de23e81ce471 (patch)
tree916b87802fe107a7d1f5bf2d3a32c27efd48af98
parent908574caa96a80483fa642e08b3b1e9ad1cd1c60 (diff)
downloadcustodia-de85fcc1b0c882c1f0447dfade44de23e81ce471.tar.gz
custodia-de85fcc1b0c882c1f0447dfade44de23e81ce471.tar.xz
custodia-de85fcc1b0c882c1f0447dfade44de23e81ce471.zip
Add travis CI support
The .travis.yml configures Travis CI. We only need Python 2.7 as the rest is handled by different tox environments. In order to enable Travis CI, please read http://docs.travis-ci.com/user/getting-started/ and do step 1) and step 2). Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com> Closes #6
-rw-r--r--.travis.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..ed1a9f2
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,21 @@
+language: python
+
+python:
+ - "2.7"
+
+branches:
+ only:
+ - master
+
+install:
+ - pip install tox
+
+script:
+ - tox
+
+env:
+ - TOXENV=py27
+ - TOXENV=py34
+ - TOXENV=doc
+ - TOXENV=sphinx
+