File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,14 @@ matrix:
6
6
dist : trusty
7
7
python : " 2.7"
8
8
env : LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=v0.11.5
9
+ services : docker
9
10
# Source package verification with Python 3.6 and librdkafka v0.11.5
10
11
- os : linux
11
12
language : python
12
13
dist : trusty
13
14
python : " 3.6"
14
15
env : LD_LIBRARY_PATH="$PWD/tmp-build/lib" LIBRDKAFKA_VERSION=v0.11.5
16
+ services : docker
15
17
# Source package verification with Python 2.7 and librdkafka v0.11.5
16
18
- os : osx
17
19
python : " 2.7"
@@ -53,7 +55,8 @@ install:
53
55
script :
54
56
- if [[ -z $CIBW_BEFORE_BUILD ]]; then pip install -v --global-option=build_ext --global-option="-Itmp-build/include/" --global-option="-Ltmp-build/lib" . .[avro] ; fi
55
57
- if [[ -z $CIBW_BEFORE_BUILD ]]; then flake8 ; fi
56
- - if [[ -z $CIBW_BEFORE_BUILD ]]; then py.test -v --timeout 20 --ignore=tmp-build --import-mode append ; fi
58
+ - if [[ -z $CIBW_BEFORE_BUILD && $TRAVIS_OS_NAME != "osx" ]]; then py.test -v --timeout 20 --ignore=tmp-build --import-mode append; tests/run.sh; fi
59
+ - if [[ -z $CIBW_BEFORE_BUILD && $TAVIS_OS_NAME = "osx" ]]; then py.test -v --timeout 20 --ignore=tmp-build --import-mode append ; fi
57
60
- if [[ -n $TRAVIS_TAG && -n $CIBW_BEFORE_BUILD ]]; then cibuildwheel --output-dir wheelhouse ; ls -la wheelhouse/ ; fi
58
61
- if [[ -n $TRAVIS_TAG && $TRAVIS_OS_NAME == linux && -n $CIBW_BEFORE_BUILD ]]; then tools/test-manylinux.sh ; fi
59
62
You can’t perform that action at this time.
0 commit comments