Merge pull request #53 from jimjh/testing
Enable continuous integration with travis-ci.
This commit is contained in:
18
.travis.yml
Normal file
18
.travis.yml
Normal file
@@ -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
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
# Kafka Python client
|
# Kafka Python client
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
This module provides low-level protocol support for Apache Kafka as well as
|
This module provides low-level protocol support for Apache Kafka as well as
|
||||||
high-level consumer and producer classes. Request batching is supported by the
|
high-level consumer and producer classes. Request batching is supported by the
|
||||||
protocol as well as broker-aware request routing. Gzip and Snappy compression
|
protocol as well as broker-aware request routing. Gzip and Snappy compression
|
||||||
@@ -15,7 +17,7 @@ Copyright 2013, David Arthur under Apache License, v2.0. See `LICENSE`
|
|||||||
|
|
||||||
# Status
|
# Status
|
||||||
|
|
||||||
I'm following the version numbers of Kafka, plus one number to indicate the
|
I'm following the version numbers of Kafka, plus one number to indicate the
|
||||||
version of this project. The current version is 0.8.1-1. This version is under
|
version of this project. The current version is 0.8.1-1. This version is under
|
||||||
development, APIs are subject to change.
|
development, APIs are subject to change.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user