Skip to content

Commit

Permalink
Unskip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
slahtine committed Dec 19, 2024
1 parent 02b1824 commit 1b3c8c3
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions integration_tests/test_network_insights.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def camara_device(client) -> Device:
device = client.devices.get(phone_number="+3637123456")
return device

@pytest.mark.skip
def test_can_subscribe_for_congestion_info(client, nef_device: Device):
subscription = client.insights.subscribe_to_congestion_info(
nef_device,
Expand All @@ -29,7 +28,7 @@ def test_can_subscribe_for_congestion_info(client, nef_device: Device):

subscription.delete()

@pytest.mark.skip

def test_can_subscribe_for_congestion_info(client, nef_device: Device):
subscription = client.insights.subscribe_to_congestion_info(
nef_device,
Expand All @@ -41,7 +40,7 @@ def test_can_subscribe_for_congestion_info(client, nef_device: Device):

subscription.delete()

@pytest.mark.skip

def test_can_subscribe_for_congestion_info_with_auth_token(client, nef_device: Device):
subscription = client.insights.subscribe_to_congestion_info(
nef_device,
Expand All @@ -54,7 +53,7 @@ def test_can_subscribe_for_congestion_info_with_auth_token(client, nef_device: D

subscription.delete()

@pytest.mark.skip

def test_can_get_subscription_by_id(client, nef_device: Device):
subscription = client.insights.subscribe_to_congestion_info(
nef_device,
Expand All @@ -69,7 +68,7 @@ def test_can_get_subscription_by_id(client, nef_device: Device):

subscription.delete()

@pytest.mark.skip

def test_can_get_list_of_subscriptions(client, nef_device: Device):
for _i in range(5):
client.insights.subscribe_to_congestion_info(
Expand All @@ -86,7 +85,7 @@ def test_can_get_list_of_subscriptions(client, nef_device: Device):
for subscription in subscriptions:
subscription.delete()

@pytest.mark.skip

def test_can_query_congestion_level_from_camara_device(client, nef_device):
subscription = client.insights.subscribe_to_congestion_info(
nef_device,
Expand All @@ -103,7 +102,7 @@ def test_can_query_congestion_level_from_camara_device(client, nef_device):

subscription.delete()

@pytest.mark.skip

def test_can_query_congestion_level_from_nef_device(client, nef_device):
subscription = client.insights.subscribe_to_congestion_info(
nef_device,
Expand All @@ -120,7 +119,7 @@ def test_can_query_congestion_level_from_nef_device(client, nef_device):

subscription.delete()

@pytest.mark.skip

def test_can_query_within_time_range(client, nef_device: Device):
subscription = client.insights.subscribe_to_congestion_info(
nef_device,
Expand Down

0 comments on commit 1b3c8c3

Please sign in to comment.