Skip to content

Commit a0323ac

Browse files
committed
Version 0.2.0 release
1 parent 4ea4099 commit a0323ac

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ install:
2424
script:
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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ python manage.py check --deploy --fail-level WARNING
242242
```
243243

244244
This way you will be safe from wrong names in your migrations.
245+
245246
Do you have a migrations that cannot be renamed? Add them to the ignore list:
246247

247248
```python

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ style = "https://raw.githubusercontent.com/wemake-services/wemake-python-stylegu
99

1010
[tool.poetry]
1111
name = "django-test-migrations"
12-
version = "0.1.0"
12+
version = "0.2.0"
1313
description = "Test django schema and data migrations, including ordering"
1414
license = "MIT"
1515

0 commit comments

Comments
 (0)