From b02ae2d44cfe9ff3cd9b7e694eb86697b0098e06 Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 13 Jul 2015 15:19:51 +0530 Subject: [PATCH 1/2] test 9.2 --- shippable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shippable.yml b/shippable.yml index 82755bd..09bdbf5 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,7 +9,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.1" + postgresql: "9.2" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it From 43e117d77121b47954205e92579bf2aa8bd27e98 Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 13 Jul 2015 15:27:07 +0530 Subject: [PATCH 2/2] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 9eae9ba..df9deba 100644 --- a/test.py +++ b/test.py @@ -8,7 +8,7 @@ def test_db(self): pg = Postgres() pg.populate() count = pg.read() - self.failIf(count != 6) + self.failIf(count != 5) pg.disconnect()