cookiecutter-django/{{cookiecutter.project_slug}}/tasks.py

85 lines
2.3 KiB
Python
Raw Normal View History

2022-10-28 19:38:57 +02:00
from pathlib import Path
2023-01-27 10:55:43 +01:00
from invoke import Context, task
2022-10-28 19:38:57 +02:00
BASE_DIR = Path(__file__).parent.resolve(strict=True)
SRC_DIR = BASE_DIR / "src"
COMPOSE_BUILD_FILE = BASE_DIR / "docker-compose-build.yaml"
COMPOSE_BUILD_ENV = {"COMPOSE_FILE": COMPOSE_BUILD_FILE}
TEST_ENV = {"ENV_FILE": BASE_DIR / "envs" / "test-envs.env"}
2022-12-16 22:11:56 +01:00
@task
2023-01-30 16:03:48 +01:00
def update_dependencies(ctx: Context, *, sync: bool = True):
return compile_dependencies(ctx, update=True, sync=sync)
@task
def compile_dependencies(ctx: Context, *, update: bool = False, sync: bool = False):
2023-01-27 10:55:43 +01:00
common_args = "-q --allow-unsafe --resolver=backtracking"
if update:
common_args += " --upgrade"
2022-12-16 22:11:56 +01:00
with ctx.cd(BASE_DIR):
ctx.run(
2023-03-14 10:58:41 +01:00
f"pip-compile {common_args} requirements.in",
2022-12-16 22:11:56 +01:00
pty=True,
echo=True,
)
ctx.run(
f"pip-compile {common_args} --strip-extras -o constraints.txt requirements.in",
pty=True,
echo=True,
)
ctx.run(
2023-03-14 10:58:41 +01:00
f"pip-compile {common_args} requirements-dev.in",
2022-12-16 22:11:56 +01:00
pty=True,
echo=True,
)
2023-01-30 16:03:48 +01:00
if sync:
sync_dependencies(ctx)
2022-12-16 22:11:56 +01:00
2022-10-28 19:38:57 +02:00
@task
2023-01-30 16:03:48 +01:00
def sync_dependencies(ctx: Context):
with ctx.cd(BASE_DIR):
ctx.run("pip-sync requirements.txt requirements-dev.txt", pty=True, echo=True)
2023-01-27 10:55:43 +01:00
@task
def makemessages(ctx: Context):
2022-10-28 19:38:57 +02:00
with ctx.cd(SRC_DIR):
ctx.run("./manage.py makemessages -l en -l fr", pty=True, echo=True)
@task
2023-01-27 10:55:43 +01:00
def compilemessages(ctx: Context):
2022-10-28 19:38:57 +02:00
with ctx.cd(SRC_DIR):
ctx.run("./manage.py compilemessages -l en -l fr", pty=True, echo=True)
@task
2023-01-27 10:55:43 +01:00
def test(ctx: Context):
2022-10-28 19:38:57 +02:00
with ctx.cd(SRC_DIR):
ctx.run("pytest", pty=True, echo=True, env=TEST_ENV)
@task
2023-01-27 10:55:43 +01:00
def test_cov(ctx: Context):
2022-10-28 19:38:57 +02:00
with ctx.cd(SRC_DIR):
ctx.run(
"pytest --cov=. --cov-branch --cov-report term-missing:skip-covered",
pty=True,
echo=True,
env={"COVERAGE_FILE": BASE_DIR / ".coverage"},
)
@task
2023-01-27 10:55:43 +01:00
def download_db(ctx: Context):
2022-10-28 19:38:57 +02:00
with ctx.cd(BASE_DIR):
ctx.run("scp ubuntu:/mnt/data/{{cookiecutter.project_slug}}/db/db.sqlite3 ./db/db.sqlite3")
ctx.run("rm -rf src/media/")
ctx.run("scp -r ubuntu:/mnt/data/{{cookiecutter.project_slug}}/media/ ./src/media")
with ctx.cd(SRC_DIR):
ctx.run("./manage.py changepassword gaugendre", pty=True)