mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-15 19:48:16 +01:00
8 lines
162 B
Python
8 lines
162 B
Python
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(params=[True, False])
|
||
|
def sort(request):
|
||
|
"""Boolean sort keyword for concat and DataFrame.append."""
|
||
|
return request.param
|