You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""Invoke tasks."""
|
|
import json
|
|
import os
|
|
import shutil
|
|
import webbrowser
|
|
|
|
from invoke import task
|
|
|
|
HERE = os.path.abspath(os.path.dirname(__file__))
|
|
with open(os.path.join(HERE, "cookiecutter.json"), "r") as fp:
|
|
COOKIECUTTER_SETTINGS = json.load(fp)
|
|
# Match default value of app_name from cookiecutter.json
|
|
COOKIECUTTER_SETTINGS["app_name"] = "my_flask_app"
|
|
COOKIE = os.path.join(HERE, COOKIECUTTER_SETTINGS["app_name"])
|
|
REQUIREMENTS = os.path.join(COOKIE, "requirements", "dev.txt")
|
|
|
|
|
|
def _run_npm_command(ctx, command):
|
|
os.chdir(COOKIE)
|
|
ctx.run(f"npm {command}", echo=True)
|
|
os.chdir(HERE)
|
|
|
|
|
|
def _run_flask_command(ctx, command, *args):
|
|
os.chdir(COOKIE)
|
|
flask_command = f"flask {command}"
|
|
if args:
|
|
flask_command += f" {' '.join(args)}"
|
|
ctx.run(flask_command, echo=True)
|
|
|
|
|
|
@task
|
|
def build(ctx):
|
|
"""Build the cookiecutter."""
|
|
ctx.run(f"cookiecutter {HERE} --no-input")
|
|
_run_npm_command(ctx, "install")
|
|
|
|
|
|
@task
|
|
def clean(ctx):
|
|
"""Clean out generated cookiecutter."""
|
|
if os.path.exists(COOKIE):
|
|
shutil.rmtree(COOKIE)
|
|
|
|
|
|
@task(pre=[clean, build])
|
|
def test(ctx):
|
|
"""Run lint commands and tests."""
|
|
ctx.run(f"pip install -r {REQUIREMENTS} --ignore-installed", echo=True)
|
|
_run_npm_command(ctx, "run lint")
|
|
os.chdir(COOKIE)
|
|
os.environ["FLASK_ENV"] = "production"
|
|
os.environ["FLASK_DEBUG"] = "0"
|
|
_run_flask_command(ctx, "lint", "--check")
|
|
_run_flask_command(ctx, "test")
|
|
|