1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Disable broken tests.

This commit is contained in:
Matt Clay 2017-02-24 13:15:51 -08:00
parent 305c88700d
commit 0d455037a2

View file

@ -144,6 +144,8 @@ def test_update_lambda_if_config_changed(monkeypatch):
assert(len(fake_lambda_connection.update_function_code.mock_calls) == 0), \
"updated lambda code when no change should have happened"
@pytest.mark.skip(reason='test broken, fails when run in isolation')
def test_update_lambda_if_only_one_config_item_changed(monkeypatch):
fake_lambda_connection = MagicMock()
@ -175,6 +177,8 @@ def test_update_lambda_if_only_one_config_item_changed(monkeypatch):
assert(len(fake_lambda_connection.update_function_code.mock_calls) == 0), \
"updated lambda code when no change should have happened"
@pytest.mark.skip(reason='test broken, fails when run in isolation')
def test_dont_update_lambda_if_nothing_changed(monkeypatch):
fake_lambda_connection = MagicMock()