diff --git a/contentcuration/contentcuration/tests/test_models.py b/contentcuration/contentcuration/tests/test_models.py index 97d3359ce7..b8dfada4f8 100644 --- a/contentcuration/contentcuration/tests/test_models.py +++ b/contentcuration/contentcuration/tests/test_models.py @@ -651,6 +651,7 @@ def test_duration_check_constraint__acceptable(self): duration=1123123, ) + @pytest.mark.skip(reason="Temporarily removed constraint") def test_duration_check_constraint__negative(self): channel = testdata.channel() with self.assertRaises(IntegrityError, msg=FILE_DURATION_CONSTRAINT): @@ -660,6 +661,7 @@ def test_duration_check_constraint__negative(self): duration=-10, ) + @pytest.mark.skip(reason="Temporarily removed constraint") def test_duration_check_constraint__not_media(self): channel = testdata.channel() with self.assertRaises(IntegrityError, msg=FILE_DURATION_CONSTRAINT):