virtuelle Umgebungen teil20 und teil20a
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.fixture(params=["split", "records", "index", "columns", "values"])
|
||||
def orient(request):
|
||||
"""
|
||||
Fixture for orients excluding the table format.
|
||||
"""
|
||||
return request.param
|
||||
|
||||
|
||||
@pytest.fixture(params=["ujson", "pyarrow"])
|
||||
def engine(request):
|
||||
if request.param == "pyarrow":
|
||||
pytest.importorskip("pyarrow.json")
|
||||
return request.param
|
Reference in New Issue
Block a user