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