From 201dfac920b4998406245bee1e99b1e518a1d68e Mon Sep 17 00:00:00 2001 From: Andy Geach Date: Mon, 2 Feb 2026 11:53:57 +0000 Subject: [PATCH] remove logout test --- tests/test_integration.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tests/test_integration.py b/tests/test_integration.py index 9e3bdca..954065b 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -864,17 +864,3 @@ def test_get_client_apps(self, ig_service: IGService): def test_update_client_app(self, ig_service: IGService): result = ig_service.update_client_app(60, 60, config.api_key, "ENABLED") print(result) - - def test_logout(self, limited_retrying): - ig_service = IGService( - config.username, - config.password, - config.api_key, - config.acc_type, - retryer=limited_retrying, - ) - ig_service.create_session() - ig_service.logout() - with pytest.raises(Exception) as error: - print(error) - ig_service.fetch_accounts()