mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-16 10:02:30 +03:00
7 lines
137 B
Python
7 lines
137 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def no_requests(monkeypatch):
|
|
monkeypatch.delattr("requests.sessions.Session.request")
|