From 14d2cc8f95f22e2a9f4ab59d3fe5d558af06fdfb Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Wed, 9 Aug 2023 23:51:08 +0500 Subject: [PATCH] chore: enabling migrations syncing test. (#32941) --- common/djangoapps/util/tests/test_db.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/djangoapps/util/tests/test_db.py b/common/djangoapps/util/tests/test_db.py index df578f26bd82..4d13666462c0 100644 --- a/common/djangoapps/util/tests/test_db.py +++ b/common/djangoapps/util/tests/test_db.py @@ -3,7 +3,7 @@ from io import StringIO import ddt -import pytest + from django.core.management import call_command from django.db.transaction import TransactionManagementError, atomic from django.test import TestCase, TransactionTestCase @@ -121,7 +121,6 @@ class MigrationTests(TestCase): Tests for migrations. """ - @pytest.mark.skip(reason="Upgrading django-simple-history without adding migrations.") @override_settings(MIGRATION_MODULES={}) def test_migrations_are_in_sync(self): """