mirror of
https://github.com/planetmint/planetmint.git
synced 2025-11-25 06:55:45 +00:00
9 lines
162 B
Python
9 lines
162 B
Python
import pytest
|
|
from planetmint.backend import connection
|
|
|
|
|
|
@pytest.fixture
|
|
def db_conn():
|
|
conn = connection.Connection(backend="tarantool_db")
|
|
return conn
|