summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2014-10-10 13:48:41 +0200
committerStefan Behnel <stefan_ml@behnel.de>2014-10-10 13:48:41 +0200
commitd699d6ccc0265252d75dbd760607b8cec06e9c63 (patch)
tree635812fa761161f3405efeed614cbc52676450f7
parent047b779aa1efe21801698fd3c603f718228c48c2 (diff)
downloadcython-d699d6ccc0265252d75dbd760607b8cec06e9c63.tar.gz
tweak travis build to actually test compiled Cython
--HG-- extra : transplant_source : %C1IR%7B%29%27%07E%19%1F%82G%CDLi%E1N%23V%9E
-rw-r--r--.travis.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index af2331223..177d61fe1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,12 +22,12 @@ before_install:
- sudo apt-get install gdb python$( python -c 'import sys; print("%d.%d" % sys.version_info[:2])' )-dbg || true
- dpkg -l | grep gdb || true
-install: CFLAGS="-O2 -ggdb" pip install .
+install: CFLAGS="-O2 -ggdb -Wall -Wextra" python setup.py build_ext -i
script:
- PYTHON_DBG="python$( python -c 'import sys; print("%d.%d" % sys.version_info[:2])' )-dbg"
- if $PYTHON_DBG -V >&2; then CFLAGS="-O0 -ggdb" $PYTHON_DBG runtests.py -vv Debugger --backends=$BACKEND; fi
- - CFLAGS="-O0 -ggdb" python runtests.py -vv -x Debugger --backends=$BACKEND
+ - CFLAGS="-O0 -ggdb -Wall -Wextra" python runtests.py -vv -x Debugger --backends=$BACKEND
matrix:
allow_failures:
@@ -38,4 +38,3 @@ matrix:
env: BACKEND=cpp
- python: pypy3
env: BACKEND=cpp
- fast_finish: true