mirror of
https://github.com/django/django.git
synced 2025-08-31 15:57:45 +00:00
Refs #25604 -- Removed makemigrations --exit option per deprecation timeline.
This commit is contained in:
parent
ff419de263
commit
e0910dcc92
5 changed files with 4 additions and 39 deletions
|
@ -17,9 +17,8 @@ from django.db.migrations.exceptions import (
|
|||
InconsistentMigrationHistory, MigrationSchemaMissing,
|
||||
)
|
||||
from django.db.migrations.recorder import MigrationRecorder
|
||||
from django.test import ignore_warnings, mock, override_settings
|
||||
from django.test import mock, override_settings
|
||||
from django.utils import six
|
||||
from django.utils.deprecation import RemovedInDjango20Warning
|
||||
from django.utils.encoding import force_text
|
||||
|
||||
from .models import UnicodeModel, UnserializableModel
|
||||
|
@ -1232,19 +1231,6 @@ class MakeMigrationsTests(MigrationTestBase):
|
|||
self.assertIn("dependencies=[\n('migrations','0001_%s'),\n]" % migration_name_0001, content)
|
||||
self.assertIn("operations=[\n]", content)
|
||||
|
||||
@ignore_warnings(category=RemovedInDjango20Warning)
|
||||
def test_makemigrations_exit(self):
|
||||
"""
|
||||
makemigrations --exit should exit with sys.exit(1) when there are no
|
||||
changes to an app.
|
||||
"""
|
||||
with self.temporary_migration_module():
|
||||
call_command("makemigrations", "--exit", "migrations", verbosity=0)
|
||||
|
||||
with self.temporary_migration_module(module="migrations.test_migrations_no_changes"):
|
||||
with self.assertRaises(SystemExit):
|
||||
call_command("makemigrations", "--exit", "migrations", verbosity=0)
|
||||
|
||||
def test_makemigrations_check(self):
|
||||
"""
|
||||
makemigrations --check should exit with a non-zero status when
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue