mirror of
https://github.com/ivuorinen/aeonview.git
synced 2026-02-10 15:46:10 +00:00
feat: full upgrade to python3, tests, etc.
This commit is contained in:
9
conftest.py
Normal file
9
conftest.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# conftest.py
|
||||
from unittest import mock
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def no_network_requests(monkeypatch):
|
||||
monkeypatch.setattr('subprocess.run', mock.Mock())
|
||||
Reference in New Issue
Block a user