mirror of
https://github.com/ivuorinen/aeonview.git
synced 2026-01-26 11:44:03 +00:00
10 lines
180 B
Python
10 lines
180 B
Python
# conftest.py
|
|
from unittest import mock
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def no_network_requests(monkeypatch):
|
|
monkeypatch.setattr("subprocess.run", mock.Mock())
|