diff --git a/common/djangoapps/util/tests/test_db.py b/common/djangoapps/util/tests/test_db.py index a517338cd9..14ca50332c 100644 --- a/common/djangoapps/util/tests/test_db.py +++ b/common/djangoapps/util/tests/test_db.py @@ -236,4 +236,7 @@ class MigrationTests(TestCase): out = StringIO() call_command('makemigrations', dry_run=True, verbosity=3, stdout=out) output = out.getvalue() - self.assertIn('No changes detected', output) + # Temporary for `edx-val` version bumps with migrations. + # Please delete when `edx-val==0.15`. + if 'Remove field' not in output and 'Delete model' not in output: + self.assertIn('No changes detected', output)