summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJim Lim <jim@quixey.com>2013-10-01 18:10:19 -0700
committerJiunn Haur Lim <codex.is.poetry@gmail.com>2013-10-01 21:44:00 -0700
commit791e07f89cec449a35154e51bfd5316b580a34bf (patch)
tree636594e64af301ec534e194f60fa8e79f857f304 /.travis.yml
parentc1a6b8ebdb05e01e39f73d831c73cd5d624764c9 (diff)
downloadkafka-python-791e07f89cec449a35154e51bfd5316b580a34bf.tar.gz
add .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..1235231
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,18 @@
+language: python
+
+python:
+ - 2.6
+ - 2.7
+
+before_install:
+ - cd kafka-src
+ - ./sbt update
+ - ./sbt package
+ - cd -
+
+install:
+ pip install .
+
+script:
+ - python -m test.test_unit
+ - python -m test.test_integration