feat: full upgrade to python3, tests, etc.

This commit is contained in:
2025-04-10 16:08:34 +03:00
parent 6aa17ba957
commit dd9f538bb4
18 changed files with 1200 additions and 240 deletions

9
conftest.py Normal file
View 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())