diff --git a/.circleci/config.yml b/.circleci/config.yml index f7e3106..72219ad 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ jobs: docker: - image: cimg/python:3.6.10 environment: - RQLITE_VERSION: 8.24.7 + RQLITE_VERSION: 8.32.0 steps: - checkout - run: pip install pytest pytest-cov diff --git a/src/test/test_dbapi.py b/src/test/test_dbapi.py index cb756d2..dc4eb37 100644 --- a/src/test/test_dbapi.py +++ b/src/test/test_dbapi.py @@ -279,7 +279,7 @@ def test_CheckExecuteParamListQueueWait(self): def test_CheckExecuteParamListConsistency(self): self.cu.execute("insert into test(name) values ('foo')") - for c in ['strong', 'weak', 'none', None]: + for c in ['strong', 'linearizable', 'weak', 'none', None]: self.cu.execute("select name from test where name=?", ["foo"], consistency=c) row = self.cu.fetchone() self.assertEqual(row[0], "foo")