From: Emmanuel Arias <eamanu@yaerobi.com>
Date: Mon, 16 Nov 2020 17:12:13 -0300
Subject: Update: Disable tests if they require Internet access

---
 molotov/tests/test_fmwk.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/molotov/tests/test_fmwk.py b/molotov/tests/test_fmwk.py
index 8aeb1cd..235463c 100644
--- a/molotov/tests/test_fmwk.py
+++ b/molotov/tests/test_fmwk.py
@@ -1,4 +1,5 @@
 import os
+import pytest
 import signal
 from molotov.session import LoggedClientSession
 from molotov.runner import Runner
@@ -234,6 +235,7 @@ class TestFmwk(TestLoop):
         self.assertEqual(len(res), 1)
 
     @async_test
+    @pytest.mark.skip(reason="This test requires internet access")
     async def test_setup_session_failure(self, loop, console, results):
         @setup_session()
         async def _setup_session(wid, session):
