Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mongo.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def populate(self):
{"name": "Lakshmi"},
{"name": "Ganesha"},
{"name": "Krishna"}
#{"name": "Murugan"}
{"name": "Murugan"}
]
self.db.things.insert(things)

Expand Down
3 changes: 0 additions & 3 deletions shippable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,11 @@ script:
- which python && coverage xml -o shippable/codecoverage/coverage.xml test.py
- echo $var and $name



notifications:
irc:
pull_requests: true
channels:
- "chat.freenode.net#test-irc"
- "chat.freenode.net#testing2"


archive: true
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test(self):
mongo = Mongo()
mongo.populate()
things = mongo.count()
self.failIf(things != 4)
self.failIf(things != 5)


def main():
Expand Down