Python package to simulate internet failures for testing purposes.
$ pip install internet-sabotagefrom internet_sabotage import no_connection
with no_connection():
response = requests.get('http://httpbin.org/ip')or
from internet_sabotage import no_connection
@no_connection
def test_something():
passMIT