Files
shell_gpt/tests/conftest.py
T
Farkhod Sadykov 361d1eabf8 Improved tests, REPL stdin, documentation (#452)
* Improved mocked response tests.
* REPL mode can accept stdin as initial prompt.
* Readme and Contributing documentation improvements.
2024-01-19 02:16:46 +01:00

9 lines
132 B
Python

import os
import pytest
@pytest.fixture(autouse=True)
def mock_os_name(monkeypatch):
monkeypatch.setattr(os, "name", "test")