From 24ac4935e04f6107bf52c9d5f160f0cb2c15bf4c Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Sun, 28 Jan 2018 19:07:38 +0000 Subject: [PATCH] macOS Travis fix: Cython extension needs installed librecode --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fd0f1a0..df4ead6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,4 +58,5 @@ script: - ./bootstrap - ./configure --enable-silent-rules - make - - make distcheck + # The Cython-built Python extension doesn’t work without make install on macOS + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then make install && make check ; else make distcheck ; fi -- 2.50.1