enhance skip except clause by directly using the Skipped exception

This commit is contained in:
Ronny Pfannschmidt 2018-03-06 10:29:26 +01:00
parent ade7ad25c7
commit fbf01bd31a
1 changed files with 3 additions and 4 deletions

View File

@ -11,6 +11,8 @@ import py
# DON't import pytest here because it causes import cycle troubles
import sys
import os
from _pytest.outcomes import Skipped
import _pytest._code
import _pytest.hookspec # the extension point definitions
import _pytest.assertion
@ -435,10 +437,7 @@ class PytestPluginManager(PluginManager):
six.reraise(new_exc_type, new_exc, sys.exc_info()[2])
except Exception as e:
import pytest
if not hasattr(pytest, 'skip') or not isinstance(e, pytest.skip.Exception):
raise
except Skipped as e:
self._warn("skipped plugin %r: %s" % ((modname, e.msg)))
else:
mod = sys.modules[importspec]