Skip to content

Commit

Permalink
TEST: for mypy-diff (pytest-dev#6486)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyed committed Jan 17, 2020
1 parent 36cce0b commit 192b854
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/_pytest/debugging.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
from _pytest.config.exceptions import UsageError


def untyped():
pass


def _validate_usepdb_cls(value):
"""Validate syntax of --pdbcls option."""
try:
Expand All @@ -19,6 +23,10 @@ def _validate_usepdb_cls(value):
return (modname, classname)


def not_untyped() -> None:
pass


def pytest_addoption(parser):
group = parser.getgroup("general")
group._addoption(
Expand Down

0 comments on commit 192b854

Please sign in to comment.