This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def pytest_addoption(parser): | |
""" | |
This hook is used to add custom command-line options to pytest. | |
""" | |
parser.addoption( | |
"--hard-mode", | |
action="store_true", | |
default=False, | |
help="Wire up extra checks" |
OlderNewer