13 lines
202 B
Python
13 lines
202 B
Python
import os
|
|
import asyncio
|
|
|
|
import pytest
|
|
|
|
os.environ["CONFIG"] = "configs/local.yaml"
|
|
|
|
from tinysteady_mailer.tsmailer import mailer
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_read_main():
|
|
await mailer()
|