File size: 205 Bytes
7885a28 |
1 2 3 4 5 6 7 8 9 10 |
import pytest
@pytest.fixture(params=["split", "records", "index", "columns", "values"])
def orient(request):
"""
Fixture for orients excluding the table format.
"""
return request.param
|