Skip to content

Commit

Permalink
Skip tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
bjester committed Apr 26, 2023
1 parent 9eebeff commit 3cc1292
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions contentcuration/contentcuration/tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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):
Expand Down

0 comments on commit 3cc1292

Please sign in to comment.