Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #9749 from mshriver/fix-typeerror-notimplemented
Browse files Browse the repository at this point in the history
[1LP][RFR] Fix typeerror in skip_not_implemented plugins
  • Loading branch information
mshriver authored Dec 10, 2019
2 parents 3578d0b + f6a835c commit 8fe090a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cfme/fixtures/skip_not_implemented.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def pytest_runtest_setup(item):
try:
outcome.get_result()
except NotImplementedError as e:
pytest.skip(e)
pytest.skip(str(e))


@pytest.hookimpl(hookwrapper=True, tryfirst=True)
Expand All @@ -18,4 +18,4 @@ def pytest_runtest_call(item):
try:
outcome.get_result()
except NotImplementedError as e:
pytest.skip(e)
pytest.skip(str(e))

0 comments on commit 8fe090a

Please sign in to comment.