Co-authored-by: Quentin Torroba <quentin.torroba@mistral.ai> Co-authored-by: Clément Drouin <clement.drouin@mistral.ai> Co-authored-by: Clément Sirieix <clement.sirieix@mistral.ai> Co-authored-by: Mistral Vibe <vibe@mistral.ai>
15 lines
424 B
Python
15 lines
424 B
Python
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _pin_banner_version(monkeypatch: pytest.MonkeyPatch) -> None:
|
|
monkeypatch.setattr(
|
|
"vibe.cli.textual_ui.widgets.banner.banner.__version__", "0.0.0"
|
|
)
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _pin_alt_key(monkeypatch: pytest.MonkeyPatch) -> None:
|
|
monkeypatch.setattr("vibe.cli.textual_ui.widgets.rewind_app.ALT_KEY", "Alt")
|