File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,10 @@ install:
2424script :
2525 - poetry run flake8 .
2626 - poetry run mypy django_test_migrations
27- - poetry run pytest
2827 # We need one more test run to make sure that `--nomigrations` work:
2928 - poetry run pytest --nomigrations --cov-fail-under=0
29+ # Real pytest execution:
30+ - poetry run pytest
3031 - poetry check
3132 - poetry run pip check
3233 - poetry run safety check --bare --full-report
Original file line number Diff line number Diff line change @@ -242,6 +242,7 @@ python manage.py check --deploy --fail-level WARNING
242242```
243243
244244This way you will be safe from wrong names in your migrations.
245+
245246Do you have a migrations that cannot be renamed? Add them to the ignore list:
246247
247248``` python
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ style = "https://raw.githubusercontent.com/wemake-services/wemake-python-stylegu
99
1010[tool .poetry ]
1111name = " django-test-migrations"
12- version = " 0.1 .0"
12+ version = " 0.2 .0"
1313description = " Test django schema and data migrations, including ordering"
1414license = " MIT"
1515
You can’t perform that action at this time.
0 commit comments