mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-15 11:38:12 +01:00
7 lines
162 B
Python
7 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
|