skip autoencoderdl layerwise casting memory (#12647)

This commit is contained in:
Sayak Paul 2025-11-13 12:56:22 +05:30 committed by GitHub
parent 7a001c3ee2
commit cd3bbe2910
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,3 +82,7 @@ class AutoencoderDCTests(ModelTesterMixin, AutoencoderTesterMixin, unittest.Test
@unittest.skipIf(IS_GITHUB_ACTIONS, reason="Skipping test inside GitHub Actions environment") @unittest.skipIf(IS_GITHUB_ACTIONS, reason="Skipping test inside GitHub Actions environment")
def test_layerwise_casting_inference(self): def test_layerwise_casting_inference(self):
super().test_layerwise_casting_inference() 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()