From 4a2a3e2fd0d5534f446b3f1fee34cb165e4d86d2 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 3 Feb 2022 21:56:34 -0800 Subject: [PATCH] Install SpatiaLite in tests To run tests for #79, #385 --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1f92538..2d66dbb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,6 +32,8 @@ jobs: - name: Optionally install numpy if: matrix.numpy == 1 run: pip install numpy + - name: Install SpatiaLite + run: sudo apt-get install libsqlite3-mod-spatialite - name: Run tests run: | pytest -v