From 4a4a6a1df0b2db42ec4dfffffae62088ef97b2e7 Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Thu, 10 Oct 2019 13:05:45 -0700 Subject: [PATCH 1/2] add pysqlite test for python 2.7.16 --- test/fixtures/pysqlite/requirements.txt | 1 + test/fixtures/pysqlite/runtime.txt | 1 + test/run-deps | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 test/fixtures/pysqlite/requirements.txt create mode 100644 test/fixtures/pysqlite/runtime.txt diff --git a/test/fixtures/pysqlite/requirements.txt b/test/fixtures/pysqlite/requirements.txt new file mode 100644 index 0000000..f94c50e --- /dev/null +++ b/test/fixtures/pysqlite/requirements.txt @@ -0,0 +1 @@ +pysqlite diff --git a/test/fixtures/pysqlite/runtime.txt b/test/fixtures/pysqlite/runtime.txt new file mode 100644 index 0000000..d42956d --- /dev/null +++ b/test/fixtures/pysqlite/runtime.txt @@ -0,0 +1 @@ +python-2.7.16 diff --git a/test/run-deps b/test/run-deps index a02d9ca..bd03fa7 100755 --- a/test/run-deps +++ b/test/run-deps @@ -40,6 +40,12 @@ testPsycopg2() { assertCapturedSuccess } +testPysqlite() { + compile "pysqlite" + assertCaptured "pysqlite" + assertCapturedSuccess +} + testCffi() { compile "cffi" assertCaptured "cffi" From 91a0be91e1b1ae1bcaac36955770e096989d00a7 Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Thu, 10 Oct 2019 13:08:27 -0700 Subject: [PATCH 2/2] Changelog Changelog Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17ce9c6..1a2ef96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ # Master +- Test for Pysqlite install - Bug fix: pipenv no longer installs twice on CI --------------------------------------------------------------------------------