mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-23 00:18:06 +00:00
6 lines
119 B
Python
6 lines
119 B
Python
import pytest
|
|
|
|
|
|
def xfail_param(param, reason):
|
|
return pytest.param(param, marks=pytest.mark.xfail(reason=reason))
|