We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
OK supports doctests as a source. See the Python documentation for more details.
There are two ways specify doctests as a source. Both ways are denoted in the configuration file:
All doctests in file(s). For example:
"hw1.py": "doctest"
This specifies all doctests within hw1.py.
hw1.py
Specific doctests in a file. For example:
"hw1.py:square": "doctest"
This specifies the doctest for the square function in hw1.py.
square
The doctest source is mainly a wrapper on top of client.sources.common.doctest_case.DoctestCase.
doctest
client.sources.common.doctest_case.DoctestCase
There was an error while loading. Please reload this page.