summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2017-10-24 21:06:17 +0200
committerStefan Behnel <stefan_ml@behnel.de>2017-10-24 21:06:17 +0200
commit26ab50adda12ce1db3e9fdab730485c9095f8205 (patch)
treea3a153c9daba6dce4725542eb4c0c4eb28b157eb
parent150c4283b05ed67c9620606bc298ba34b0f70fbb (diff)
downloadcython-26ab50adda12ce1db3e9fdab730485c9095f8205.tar.gz
Enable Pythran test on travis.
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3cf84a642..5712ce06b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -102,6 +102,6 @@ before_script: ccache -s || true
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
- - if [ false && "$BACKEND" = "cpp" ]; then pip install pythran; fi # disabled: needs Pythran > 0.8.1
+ - if [ "$BACKEND" = "cpp" ]; then pip install pythran; fi
- CFLAGS="-O2 -ggdb -Wall -Wextra $(python -c 'import sys; print("-fno-strict-aliasing" if sys.version_info[0] == 2 else "")')" python setup.py build_ext -i
- CFLAGS="-O0 -ggdb -Wall -Wextra" python runtests.py -vv -x Debugger --backends=$BACKEND -j7