mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-02 03:29:03 +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))
|