Skip to content
Snippets Groups Projects
Commit f87e50cb authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Track py.test 1.0 marker changes.

parent f44a3856
No related branches found
No related tags found
No related merge requests found
try: try:
from py.test import mark as mark_test from py.test import mark as mark_test
except ImportError: except ImportError:
def mark_test(**kwargs): class _Mark:
def dec(f): def __getattr__(self, name):
return f def dec(f):
return dec return f
return dec
mark_test = _Mark()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment