Block sockets for unit-tests (#4803)

# Block usage of sockets during unit tests

Catch any tests that attempt to use the network.
This commit is contained in:
Eugene Yurtsev
2023-05-16 14:41:24 -04:00
committed by GitHub
parent f7e3d97b19
commit c3b6129beb
4 changed files with 30 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
import pytest
import pytest_socket
import requests
def test_socket_disabled() -> None:
"""This test should fail."""
with pytest.raises(pytest_socket.SocketBlockedError):
requests.get("https://www.example.com")