feat: basefiles
This commit is contained in:
commit
bdf9e90efa
16 changed files with 1299 additions and 0 deletions
16
tests/conftest.py
Normal file
16
tests/conftest.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue