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 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()