diff options
author | Jim Lim <jim@quixey.com> | 2013-10-01 18:10:19 -0700 |
---|---|---|
committer | Jiunn Haur Lim <codex.is.poetry@gmail.com> | 2013-10-01 21:44:00 -0700 |
commit | 791e07f89cec449a35154e51bfd5316b580a34bf (patch) | |
tree | 636594e64af301ec534e194f60fa8e79f857f304 /.travis.yml | |
parent | c1a6b8ebdb05e01e39f73d831c73cd5d624764c9 (diff) | |
download | kafka-python-791e07f89cec449a35154e51bfd5316b580a34bf.tar.gz |
add .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 18 |
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 |