diff --git a/.travis.yml b/.travis.yml index 0f114ef..25f9945 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,9 +24,10 @@ install: script: - poetry run flake8 . - poetry run mypy django_test_migrations - - poetry run pytest # We need one more test run to make sure that `--nomigrations` work: - poetry run pytest --nomigrations --cov-fail-under=0 + # Real pytest execution: + - poetry run pytest - poetry check - poetry run pip check - poetry run safety check --bare --full-report diff --git a/README.md b/README.md index 77e2270..2d6630a 100644 --- a/README.md +++ b/README.md @@ -242,6 +242,7 @@ python manage.py check --deploy --fail-level WARNING ``` This way you will be safe from wrong names in your migrations. + Do you have a migrations that cannot be renamed? Add them to the ignore list: ```python diff --git a/pyproject.toml b/pyproject.toml index 16b7a77..1f3146c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ style = "https://raw.githubusercontent.com/wemake-services/wemake-python-stylegu [tool.poetry] name = "django-test-migrations" -version = "0.1.0" +version = "0.2.0" description = "Test django schema and data migrations, including ordering" license = "MIT"