feat: basefiles

This commit is contained in:
cătălin 2023-10-02 22:46:29 +02:00
commit bdf9e90efa
Signed by: catalin
GPG key ID: 686088EF78EE4083
16 changed files with 1299 additions and 0 deletions

16
tests/conftest.py Normal file
View file

@ -0,0 +1,16 @@
import logging
import pytest
@pytest.fixture()
def anyio_backend():
return 'trio'
@pytest.fixture()
def logger():
logging.basicConfig()
logger = logging.getLogger("test_logger")
logger.setLevel(logging.INFO)
return logger