Don't rebuild systematically migrations

This commit is contained in:
Yohann D'ANELLO 2020-09-05 10:07:32 +02:00
parent 751a4291ab
commit 8c23726f88
5 changed files with 1 additions and 11 deletions

View File

@ -195,7 +195,6 @@ Sinon vous pouvez suivre les étapes décrites ci-dessous.
DJANGO_SECRET_KEY=CHANGE_ME
DJANGO_SETTINGS_MODULE="note_kfet.settings
NOTE_URL=localhost # URL où accéder à la note
DOMAIN=localhost # note.example.com
CONTACT_EMAIL=tresorerie.bde@localhost
# Le reste n'est utile qu'en production, pour configurer l'envoi des mails
NOTE_MAIL=notekfet@localhost
@ -211,7 +210,6 @@ Sinon vous pouvez suivre les étapes décrites ci-dessous.
$ source /env/bin/activate
(env)$ ./manage.py check # pas de bêtise qui traine
(env)$ ./manage.py makemigrations
(env)$ ./manage.py migrate
7. *Enjoy \o/*

View File

@ -1,10 +1,4 @@
---
- name: Make Django migrations
command: /var/www/note_kfet/env/bin/python manage.py makemigrations
args:
chdir: /var/www/note_kfet
become_user: www-data
- name: Migrate Django database
command: /var/www/note_kfet/env/bin/python manage.py migrate
args:

@ -1 +1 @@
Subproject commit 7246f4d18aa4f5e161b6e185b02fa28187e04747
Subproject commit 7479671b3f6c499958d3ad991eb54de3010f4da8

View File

@ -14,7 +14,6 @@ fi
# Set up Django project
python3 manage.py collectstatic --noinput
python3 manage.py compilemessages
python3 manage.py makemigrations
python3 manage.py migrate
if [ "$1" ]; then

View File

@ -15,7 +15,6 @@ deps =
-r{toxinidir}/requirements.txt
coverage
commands =
./manage.py makemigrations
coverage run --omit='*migrations*,apps/scripts*' --source=apps,note_kfet ./manage.py test apps/
coverage report -m