summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJose Plana <jplana@gmail.com>2013-09-30 21:45:22 +0200
committerJose Plana <jplana@gmail.com>2013-10-01 01:34:21 +0200
commit3fd8076c1691bd03876abc571c80e1d6aa6781bf (patch)
treead3b910f80418412298abb425c691ac9beda449e /.travis.yml
parenta7fb596130c1a0f6a4a4b12e118fb371b078baab (diff)
Added travis and readthedocs support
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..cbb6b7f
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,19 @@
+language: python
+python:
+ - "2.6"
+ - "2.7"
+
+# command to install dependencies
+install:
+ - python bootstrap.py -v 2.1.1
+ - bin/buildout
+
+# command to run tests
+script:
+ bin/test etcd.tests.unit
+
+# Only test main development branch and releases
+branches:
+ only:
+ - master
+ - /^release_.*$/