Exemplo n.º 1
0
 def test_fetchrepodate_connectionerror(self):
     with env_var('CONDA_REMOTE_CONNECT_TIMEOUT_SECS', 1, reset_context):
         with env_var('CONDA_REMOTE_READ_TIMEOUT_SECS', 1, reset_context):
             with env_var('CONDA_REMOTE_MAX_RETRIES', 1, reset_context):
                 with pytest.raises(CondaHTTPError) as execinfo:
                     url = "http://240.0.0.0/channel/osx-64"
                     msg = "Connection error:"
                     fetch_repodata(url)
                     assert msg in str(execinfo)
Exemplo n.º 2
0
 def test_fetchrepodate_connectionerror(self):
     with env_var('CONDA_REMOTE_CONNECT_TIMEOUT_SECS', 1, reset_context):
         with env_var('CONDA_REMOTE_READ_TIMEOUT_SECS', 1, reset_context):
             with env_var('CONDA_REMOTE_MAX_RETRIES', 1, reset_context):
                 with pytest.raises(CondaHTTPError) as execinfo:
                     url = "http://240.0.0.0/channel/osx-64"
                     msg = "Connection error:"
                     fetch_repodata(url)
                     assert msg in str(execinfo)
Exemplo n.º 3
0
 def test_fetchrepodate_connectionerror(self):
     with pytest.raises(CondaRuntimeError) as execinfo:
         url = "http://240.0.0.0/"
         msg = "Connection error:"
         fetch_repodata(url)
         assert msg in str(execinfo)
Exemplo n.º 4
0
 def test_fetchrepodate_connectionerror(self):
     with pytest.raises(CondaHTTPError) as execinfo:
         url = "http://240.0.0.0/"
         msg = "Connection error:"
         fetch_repodata(url)
         assert msg in str(execinfo)