From fc82a94fbc05053ec15d806c2ded9aa59f603287 Mon Sep 17 00:00:00 2001 From: sayakpaul Date: Thu, 13 Nov 2025 11:59:47 +0530 Subject: [PATCH] skip autoencoderdl layerwise casting memory --- tests/models/autoencoders/test_models_autoencoder_dc.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/models/autoencoders/test_models_autoencoder_dc.py b/tests/models/autoencoders/test_models_autoencoder_dc.py index d34001e7b903..b1b5531d0134 100644 --- a/tests/models/autoencoders/test_models_autoencoder_dc.py +++ b/tests/models/autoencoders/test_models_autoencoder_dc.py @@ -82,3 +82,7 @@ def prepare_init_args_and_inputs_for_common(self): @unittest.skipIf(IS_GITHUB_ACTIONS, reason="Skipping test inside GitHub Actions environment") def test_layerwise_casting_inference(self): super().test_layerwise_casting_inference() + + @unittest.skipIf(IS_GITHUB_ACTIONS, reason="Skipping test inside GitHub Actions environment") + def test_layerwise_casting_memory(self): + super().test_layerwise_casting_memory()