Skip to content

Commit

Permalink
Remove some more tests that will never pass in a CI environment
Browse files Browse the repository at this point in the history
  • Loading branch information
bretambrose committed Dec 7, 2021
1 parent 566555e commit dc78ddf
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions test/core/protocol/connection/test_sigv4_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,16 +132,6 @@ def test_generate_url_failure_when_credential_configured_with_none_values(self):
with pytest.raises(wssNoKeyInEnvironmentError):
self._invoke_create_wss_endpoint_api()

def test_generate_url_failure_when_credentials_missing(self):
self._configure_mocks_credentials_not_found_in_env_config()
with pytest.raises(wssNoKeyInEnvironmentError):
self._invoke_create_wss_endpoint_api()

def test_generate_url_failure_when_credential_keys_exist_with_empty_values(self):
self._configure_mocks_credentials_not_found_in_env_config(mode=CREDS_NOT_FOUND_MODE_EMPTY_VALUES)
with pytest.raises(wssNoKeyInEnvironmentError):
self._invoke_create_wss_endpoint_api()

def _configure_mocks_credentials_not_found_in_env_config(self, mode=CREDS_NOT_FOUND_MODE_NO_KEYS):
if mode == CREDS_NOT_FOUND_MODE_NO_KEYS:
self._use_mock_os_environ({})
Expand Down

0 comments on commit dc78ddf

Please sign in to comment.