A change in Python test discovery [1] causes the old packages that raised an error to be discovered; now we use a common directory that's ignored during discovery. Refs #23763. [1] http://bugs.python.org/issue7559 Backport of c0cc8f69e7abfa8578729031f97ae4b96c5cdafe from master
4 lines
136 B
Python
4 lines
136 B
Python
# A package that raises an ImportError that can be shared among test apps and
|
|
# excluded from test discovery.
|
|
raise ImportError("Oops")
|