Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compilemessages in setup step is not necessary anymore #4299

Merged
merged 1 commit into from
Mar 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,6 @@ def setup(ctx):
l10n_update(ctx)
print("* Creating fake data.")
manage(ctx, "load_fake_data")
print("* Compiling locale strings.")
compilemessages(ctx)
print("* Updating block information.")
manage(ctx, "block_inventory")

Expand All @@ -163,8 +161,6 @@ def catch_up(ctx):
ctx.run("pipenv install --dev")
print("* Applying database migrations.")
migrate(ctx)
print("* Compiling locale strings.")
compilemessages(ctx)
print("* Updating localizable fields.")
l10n_sync(ctx)
l10n_update(ctx)
Expand Down Expand Up @@ -294,8 +290,6 @@ def docker_catch_up(ctx):
ctx.run("docker-compose build")
print("* Applying database migrations.")
docker_migrate(ctx)
print("* Compiling locale strings.")
docker_compilemessages(ctx)
print("* Updating block information.")
docker_l10n_block_inventory(ctx)

Expand All @@ -319,8 +313,6 @@ def docker_new_env(ctx):
docker_migrate(ctx)
print("* Creating fake data.")
docker_manage(ctx, "load_fake_data")
print("* Compiling locale strings.")
docker_compilemessages(ctx)
print("* Updating block information.")
docker_l10n_block_inventory(ctx)
docker_create_super_user(ctx)
Expand Down