mirror of
https://github.com/coleam00/Archon.git
synced 2025-12-30 21:49:30 -05:00
12 lines
232 B
Python
12 lines
232 B
Python
"""Pytest configuration for agent_work_orders tests"""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def reset_structlog():
|
|
"""Reset structlog configuration for each test"""
|
|
import structlog
|
|
|
|
structlog.reset_defaults()
|