mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-15 03:28:13 +01:00
10 lines
205 B
Python
10 lines
205 B
Python
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(params=["split", "records", "index", "columns", "values"])
|
||
|
def orient(request):
|
||
|
"""
|
||
|
Fixture for orients excluding the table format.
|
||
|
"""
|
||
|
return request.param
|