Skip to content

Commit

Permalink
Merge pull request #234 from jadolg/add-6.3-broken-tests-back
Browse files Browse the repository at this point in the history
Add back the tests broken in 6.3 since 6.4 is already out and fixed the issue
  • Loading branch information
jadolg authored Nov 4, 2023
2 parents 794d4a8 + 0866308 commit efccf24
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion tests/test_channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,6 @@ def test_channels_online(logged_rocket):
assert len(channels_online.get("online")) >= 1


@pytest.mark.skip(reason="Broken in 6.3")
def test_channels_set_default(logged_rocket):
channels_set_default = logged_rocket.channels_set_default(
room_id="GENERAL", default=False
Expand Down
5 changes: 0 additions & 5 deletions tests/test_integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def integrations_create_webhook_incoming(logged_rocket):
).json()


@pytest.mark.skip(reason="Broken in 6.3")
def test_integrations_create(integrations_create_webhook_incoming, logged_rocket):
integration_webhook_incoming = integrations_create_webhook_incoming
assert integration_webhook_incoming.get("success")
Expand All @@ -39,13 +38,11 @@ def test_integrations_create(integrations_create_webhook_incoming, logged_rocket
assert integration_webhook_outgoing.get("success")


@pytest.mark.skip(reason="Broken in 6.3")
def test_integrations_get(integrations_create_webhook_incoming, logged_rocket):
integration_id = integrations_create_webhook_incoming.get("integration").get("_id")
assert logged_rocket.integrations_get(integration_id).json().get("success")


@pytest.mark.skip(reason="Broken in 6.3")
def test_integrations_history(integrations_create_webhook_incoming, logged_rocket):
integration_id = integrations_create_webhook_incoming.get("integration").get("_id")
assert logged_rocket.integrations_history(integration_id).json().get("success")
Expand All @@ -55,7 +52,6 @@ def test_integrations_list(logged_rocket):
assert logged_rocket.integrations_list().json().get("success")


@pytest.mark.skip(reason="Broken in 6.3")
def test_integrations_remove(integrations_create_webhook_incoming, logged_rocket):
integration = integrations_create_webhook_incoming.get("integration")
assert (
Expand All @@ -67,7 +63,6 @@ def test_integrations_remove(integrations_create_webhook_incoming, logged_rocket
)


@pytest.mark.skip(reason="Broken in 6.3")
def test_integrations_update(integrations_create_webhook_incoming, logged_rocket):
integration_id = integrations_create_webhook_incoming.get("integration").get("_id")
assert (
Expand Down

0 comments on commit efccf24

Please sign in to comment.