mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-06-04 06:52:25 +00:00
12 lines
233 B
Python
12 lines
233 B
Python
import logging
|
|
import pytest
|
|
from buzz.settings.settings import Settings
|
|
|
|
|
|
@pytest.fixture(scope="package")
|
|
def reset_settings():
|
|
settings = Settings()
|
|
settings.clear()
|
|
settings.sync()
|
|
logging.debug("Reset settings")
|