Exemple #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)
Exemple #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)
Exemple #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)
Exemple #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)