From 7feac74db8f8a21af9b92131e0404a78943df356 Mon Sep 17 00:00:00 2001 From: Vidya Raghavan Date: Tue, 30 Jun 2015 12:52:50 +0530 Subject: [PATCH 1/3] Update test.py --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 12bf05b..1475dc8 100644 --- a/test.py +++ b/test.py @@ -8,7 +8,7 @@ def test(self): mongo = Mongo() mongo.populate() things = mongo.count() - self.failIf(things != 4) + self.failIf(things != 5) def main(): From 5d6f07c6869514c9923d72ec9af22eef31ca84d1 Mon Sep 17 00:00:00 2001 From: buildsample Date: Tue, 30 Jun 2015 12:58:31 +0530 Subject: [PATCH 2/3] Update shippable.yml --- shippable.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/shippable.yml b/shippable.yml index 634c7cc..b04abeb 100644 --- a/shippable.yml +++ b/shippable.yml @@ -28,8 +28,6 @@ script: - which python && coverage xml -o shippable/codecoverage/coverage.xml test.py - echo $var and $name - - notifications: irc: pull_requests: true @@ -37,5 +35,4 @@ notifications: - "chat.freenode.net#test-irc" - "chat.freenode.net#testing2" - archive: true From 1eccc51c49170c7367719bdefc7f543e0ef73754 Mon Sep 17 00:00:00 2001 From: buildsample Date: Wed, 12 Aug 2015 13:24:13 +0530 Subject: [PATCH 3/3] Update mongo.py --- mongo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongo.py b/mongo.py index b4490cb..16d2213 100644 --- a/mongo.py +++ b/mongo.py @@ -13,7 +13,7 @@ def populate(self): {"name": "Lakshmi"}, {"name": "Ganesha"}, {"name": "Krishna"} - #{"name": "Murugan"} + {"name": "Murugan"} ] self.db.things.insert(things)