vdirsyncer/tests/conftest.py
2015-01-21 13:02:30 +01:00

13 lines
296 B
Python

# -*- coding: utf-8 -*-
'''
General-purpose fixtures for vdirsyncer's testsuite.
'''
import pytest
import vdirsyncer.log
@pytest.fixture(autouse=True)
def setup_logging():
vdirsyncer.log.set_level(vdirsyncer.log.logging.DEBUG)
vdirsyncer.log.add_handler(vdirsyncer.log.stdout_handler)