Skip to content

Commit 513bb35

Browse files
committed
skip test_layerwise_casting_training test
1 parent 1c09ba1 commit 513bb35

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tests/models/autoencoders/test_models_autoencoder_vidtok.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
)
2525

2626
from ..test_modeling_common import ModelTesterMixin, UNetTesterMixin
27+
from ...testing_utils import IS_GITHUB_ACTIONS
2728

2829

2930
class AutoencoderVidTokTests(ModelTesterMixin, UNetTesterMixin, unittest.TestCase):
@@ -156,3 +157,7 @@ def test_forward_with_norm_groups(self):
156157
@unittest.skip("Unsupported test.")
157158
def test_outputs_equivalence(self):
158159
pass
160+
161+
@unittest.skipIf(IS_GITHUB_ACTIONS, reason="Skipping test inside GitHub Actions environment")
162+
def test_layerwise_casting_training(self):
163+
super().test_layerwise_casting_training()

0 commit comments

Comments
 (0)