ken2ki's picture
Ship the full GAIA agent for course submission.
3af908f
Raw
History Blame Contribute Delete
345 Bytes
"""Shared pytest fixtures."""
from __future__ import annotations
import pytest
@pytest.fixture(autouse=True)
def _disable_network_tools(monkeypatch):
monkeypatch.setenv("RETRIEVER_ENABLED", "0")
monkeypatch.setenv("AGENT_ARTIFACTS", "0")
monkeypatch.setenv("SELF_EVOLVE", "0")
monkeypatch.setenv("PIPELINE_DEPTH", "minimal")