From f1dbdde78dd829c210b5d0213079a76479d06107 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Mon, 28 Dec 2020 19:28:53 +0100 Subject: [PATCH] Commit migrations, they should not be too much updated --- .gitignore | 2 -- tfjm/settings.py | 2 +- tox.ini | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 61d9bad..1299f3e 100644 --- a/.gitignore +++ b/.gitignore @@ -42,5 +42,3 @@ db.sqlite3 # Don't git index whoosh_index/ - -migrations/ diff --git a/tfjm/settings.py b/tfjm/settings.py index c3f7b3b..3fbdcb0 100644 --- a/tfjm/settings.py +++ b/tfjm/settings.py @@ -68,7 +68,7 @@ INSTALLED_APPS = [ 'participation', ] -if "test" not in sys.argv and "makemigrations" not in sys.argv: # pragma: no cover +if "test" not in sys.argv: # pragma: no cover INSTALLED_APPS += [ 'cas_server', 'django_extensions', diff --git a/tox.ini b/tox.ini index ed5ca15..38be163 100644 --- a/tox.ini +++ b/tox.ini @@ -22,7 +22,6 @@ deps = python-magic~=0.4 whoosh~=2.7 commands = - ./manage.py makemigrations coverage run --source=apps,tfjm ./manage.py test apps/ tfjm/ coverage report -m