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