From d0090f3f9781f92b9c1823c0098b38a1de8f2ffa Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Fri, 6 Apr 2018 03:51:01 +0200 Subject: [PATCH] Add makemigrations check in tox --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tox.ini b/tox.ini index e9cb8e05..f6c3ab75 100644 --- a/tox.ini +++ b/tox.ini @@ -20,6 +20,9 @@ deps= -r{toxinidir}/test_requirements.txt sitepackages=False commands= + django110: python {toxinidir}/manage.py makemigrations --check --dry-run + django111: python {toxinidir}/manage.py makemigrations --check --dry-run + django20: python {toxinidir}/manage.py makemigrations --check --dry-run python manage.py test {posargs} [testenv:flake8]