Skip to content

Commit

Permalink
Merge pull request #231 from cs50/develop
Browse files Browse the repository at this point in the history
logging and log levels
  • Loading branch information
Kareem Zidane committed Oct 11, 2020
2 parents 7ccd331 + 03d5bb0 commit c2a2661
Show file tree
Hide file tree
Showing 28 changed files with 691 additions and 259 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

check50 is a testing tool for checking student code. As a student you can use check50 to check your CS50 problem sets or any other Problem sets for which check50 checks exist. check50 allows teachers to automatically grade code on correctness and to provide automatic feedback while students are coding.

You can find documentation and instructions for writing your own checks at https://cs50.readthedocs.io/check50/.
You can find documentation and instructions for writing your own checks at https://cs50.readthedocs.io/projects/check50/.

7 changes: 4 additions & 3 deletions check50/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,13 @@ def _setup_translation():
run,
log, _log,
hidden,
Failure, Mismatch
Failure, Mismatch, Missing
)


from . import regex
from .runner import check
from pexpect import EOF

__all__ = ["import_checks", "data", "exists", "hash", "include",
"run", "log", "Failure", "Mismatch", "check", "EOF"]
__all__ = ["import_checks", "data", "exists", "hash", "include", "regex",
"run", "log", "Failure", "Mismatch", "Missing", "check", "EOF"]

0 comments on commit c2a2661

Please sign in to comment.