diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-05-01 14:44:52 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-05-01 14:44:52 +0200 | 
| commit | e7359f6afb906e2620a38ff2c5f3ebacd7553fec (patch) | |
| tree | af32a7fbb6301faf6e79d0f939986484ad7d5a09 | |
| parent | 736694753944e09ea8a011fdcf62d4070f0f2bb9 (diff) | |
| download | Ishtar-e7359f6afb906e2620a38ff2c5f3ebacd7553fec.tar.bz2 Ishtar-e7359f6afb906e2620a38ff2c5f3ebacd7553fec.zip | |
CI: try to remove auth migration dependency
| -rw-r--r-- | Makefile.example | 2 | ||||
| -rw-r--r-- | ishtar_common/migrations/0001_initial.py | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/Makefile.example b/Makefile.example index 6c263b257..6d8214b3d 100644 --- a/Makefile.example +++ b/Makefile.example @@ -51,7 +51,7 @@ coverage: clean  			archaeological_files_pdl" ./manage.py test $(apps) && coverage report  build_gitlab: -	cd $(project); $(PYTHON) ./manage.py makemigrations auth +	# cd $(project); $(PYTHON) ./manage.py makemigrations auth -n ishtar_profile  	cd $(project); $(PYTHON) ./manage.py migrate  test_gitlab: clean diff --git a/ishtar_common/migrations/0001_initial.py b/ishtar_common/migrations/0001_initial.py index 94f6bb415..cbb9cc659 100644 --- a/ishtar_common/migrations/0001_initial.py +++ b/ishtar_common/migrations/0001_initial.py @@ -16,7 +16,7 @@ class Migration(migrations.Migration):      dependencies = [          ('contenttypes', '0002_remove_content_type_name'),          migrations.swappable_dependency(settings.AUTH_USER_MODEL), -        ('auth', '0007_auto_20170414_2049'), +        # ('auth', 'ishtar_profile'),      ]      operations = [ | 
