Skip to content

Commit

Permalink
Merge pull request #73 from cs50/develop
Browse files Browse the repository at this point in the history
Add data store
  • Loading branch information
Kareem Zidane authored Sep 26, 2017
2 parents 91f8f02 + 3d5a135 commit b3bff14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions check50.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ def print_json(results):
obj = {
"name": result["test"]._testMethodName,
"status": result["status"],
"data": result["test"].data,
"description": result["description"],
"helpers": result["helpers"],
"log": result["test"].log,
Expand Down Expand Up @@ -585,6 +586,7 @@ def __init__(self, method_name):
self.helpers = None
self.log = []
self.children = []
self.data = {}

def diff(self, f1, f2):
"""Returns boolean indicating whether or not the files are different"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ class CustomInstall(install):
"console_scripts": ["check50=check50:main"]
},
url="https://github.com/cs50/check50",
version="2.0.5"
version="2.0.6"
)

0 comments on commit b3bff14

Please sign in to comment.