mirror of
https://github.com/chatmail/relay.git
synced 2026-05-11 16:34:39 +00:00
10 lines
195 B
Python
10 lines
195 B
Python
import pytest
|
|
from chatmaild.database import Database
|
|
|
|
|
|
@pytest.fixture()
|
|
def db(tmpdir):
|
|
db_path = tmpdir / "passdb.sqlite"
|
|
print("database path:", db_path)
|
|
return Database(db_path)
|