11 lines
326 B
Python
11 lines
326 B
Python
|
|
"""Pytest configuration and fixtures for can-you-assist (T07).
|
||
|
|
|
||
|
|
Safety-focused tests live here. All tests should be fast and hermetic.
|
||
|
|
No live LLM or network required for the default run.
|
||
|
|
"""
|
||
|
|
|
||
|
|
import pytest
|
||
|
|
|
||
|
|
# Future: common fixtures for envelopes, fake adapters, etc.
|
||
|
|
# For now this file exists to establish the test layout.
|