mirror of
https://github.com/Ladebeze66/projetcbaollm.git
synced 2025-12-17 13:17:49 +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
|