mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
11 lines
162 B
Python
11 lines
162 B
Python
import pytest
|
|
|
|
from .stepping import create_stepper
|
|
|
|
|
|
@pytest.fixture
|
|
def steps():
|
|
stepper = create_stepper()
|
|
with stepper.start():
|
|
yield stepper
|