From c8b243348197c540710154fce7e7009d8e7f6699 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 21 Aug 2020 14:01:44 -0700 Subject: [PATCH] Install spatialite in Travis for --load-extension tests, refs #134 --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index e5c629e..0360337 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,11 @@ python: - "3.7" - "3.8" +before_install: + # SpatiaLite needed for the --load-extension test: + - sudo apt-get update + - sudo apt-get -y install libsqlite3-mod-spatialite + script: - pip install -U pip wheel - pip install .[test]