Skip to content

Commit b10b73a

Browse files
committed
Merge pull request #53 from jimjh/testing
Enable continuous integration with travis-ci.
2 parents c1a6b8e + 791e07f commit b10b73a

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: python
2+
3+
python:
4+
- 2.6
5+
- 2.7
6+
7+
before_install:
8+
- cd kafka-src
9+
- ./sbt update
10+
- ./sbt package
11+
- cd -
12+
13+
install:
14+
pip install .
15+
16+
script:
17+
- python -m test.test_unit
18+
- python -m test.test_integration

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Kafka Python client
22

3+
![travis](https://travis-ci.org/mumrah/kafka-python.png)
4+
35
This module provides low-level protocol support for Apache Kafka as well as
46
high-level consumer and producer classes. Request batching is supported by the
57
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`
1517

1618
# Status
1719

18-
I'm following the version numbers of Kafka, plus one number to indicate the
20+
I'm following the version numbers of Kafka, plus one number to indicate the
1921
version of this project. The current version is 0.8.1-1. This version is under
2022
development, APIs are subject to change.
2123

0 commit comments

Comments
 (0)