blob: 19fe5cb08ed4a188840d83ce7e5b1532080b6a7e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
class UsageError(Exception):
""" error in pytest usage or invocation"""
class PrintHelp(Exception):
"""Raised when pytest should print it's help to skip the rest of the
argument parsing and validation."""
pass
|