From 9615b49da26b16f5a7d7910c760d87988a7f1026 Mon Sep 17 00:00:00 2001 From: Jeff Baskin Date: Wed, 26 Mar 2025 17:55:08 -0400 Subject: [PATCH] Skipping certain tests until session is restored. --- test/test_single_boot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_single_boot.py b/test/test_single_boot.py index 223d544..6417bc3 100644 --- a/test/test_single_boot.py +++ b/test/test_single_boot.py @@ -51,6 +51,7 @@ class BootUpTC(MTTClusterTC): await self.run_tests("/", tests) + @skip("Code not availaable yet.") async def test_session_id_is_random(self): """Is the session id random?""" await self.create_server() @@ -62,6 +63,7 @@ class BootUpTC(MTTClusterTC): result2 = response.cookies[SESSION_KEY].value self.assertNotEqual(result1, result2, "Session ids should be unique.") + @skip("Code not availaable yet.") async def test_session_does_not_reset_after_connection(self): """Does the session id remain constant during the session""" await self.create_server()