File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ install:
34
34
- pip install .
35
35
36
36
script :
37
- - tox -e ` if [ "$TRAVIS_PYTHON_VERSION" == "pypy" ]; then echo pypy; else echo py${TRAVIS_PYTHON_VERSION/./}; fi`
37
+ - export pyver=$( if [ "$TRAVIS_PYTHON_VERSION" == "pypy" ]; then echo pypy; else echo py${TRAVIS_PYTHON_VERSION/./}; fi) && tox -e ${pyver} && source .tox/${pyver}/bin/activate && make test-py-lz4framed
38
38
39
39
after_success :
40
40
- coveralls
Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ test36: build-integration
20
20
test27 : build-integration
21
21
KAFKA_VERSION=$(KAFKA_VERSION ) SCALA_VERSION=$(SCALA_VERSION ) tox -e py27 -- $(FLAGS )
22
22
23
+ test-py-lz4framed :
24
+ pip uninstall -y lz4 && pip install py-lz4framed
25
+ py.test -pylint --pylint-rcfile=pylint.rc --pylint-error-types=EF --cov=kafka --cov-config=.covrc
26
+
27
+
23
28
# Test using py.test directly if you want to use local python. Useful for other
24
29
# platforms that require manual installation for C libraries, ie. Windows.
25
30
test-local : build-integration
You can’t perform that action at this time.
0 commit comments