From 42b2b4b785e3163371e92a9cc085bc47e7c83107 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 24 Jan 2019 22:54:32 -0800 Subject: [PATCH] Upgrade sqlite3 in Travis so we can test against FTS5 Using recipe from https://linuxhint.com/install-sqlite-ubuntu-linux-mint/ --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 43078f7..4d8796e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,8 @@ python: - "3.7-dev" script: + - sudo add-apt-repository ppa:jonathonf/backports -y + - sudo apt-get update && sudo apt-get install sqlite3 - pip install -U pip wheel - pip install .[test] - pytest