clean unused code
This commit is contained in:
@ -48,7 +48,7 @@ class DataSourceTableColumn(ormar.Model):
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True, scope="module")
|
||||
def create_test_database():
|
||||
def create_test_database(): # pragma: no cover
|
||||
engine = sqlalchemy.create_engine(DATABASE_URL)
|
||||
metadata.drop_all(engine)
|
||||
metadata.create_all(engine)
|
||||
@ -61,7 +61,7 @@ def create_test_database():
|
||||
reason="wait for fix for sqlite in encode/databases",
|
||||
)
|
||||
@pytest.mark.asyncio
|
||||
async def test_double_nested_reverse_relation():
|
||||
async def test_double_nested_reverse_relation(): # pragma: no cover
|
||||
async with database:
|
||||
data_source = await DataSource(name="local").save()
|
||||
test_tables = [
|
||||
|
||||
Reference in New Issue
Block a user