-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathconftest.py
39 lines (27 loc) · 1.08 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import pytest
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
import graphene
from ..converter import convert_sqlalchemy_composite
from ..registry import reset_global_registry
from .models import Base, CompositeFullName
test_db_url = 'sqlite://' # use in-memory database for tests
@pytest.fixture(autouse=True)
def reset_registry():
reset_global_registry()
# Prevent tests that implicitly depend on Reporter from raising
# Tests that explicitly depend on this behavior should re-register a converter
@convert_sqlalchemy_composite.register(CompositeFullName)
def convert_composite_class(composite, registry):
return graphene.Field(graphene.Int)
@pytest.fixture(scope="function")
def session_factory():
engine = create_engine(test_db_url)
Base.metadata.create_all(engine)
yield sessionmaker(bind=engine)
# SQLite in-memory db is deleted when its connection is closed.
# https://www.sqlite.org/inmemorydb.html
engine.dispose()
@pytest.fixture(scope="function")
def session(session_factory):
return session_factory()