mirror of
https://github.com/YunoHost-Apps/django-for-runners_ynh.git
synced 2024-09-03 18:26:16 +02:00
commit
4da7bd28e1
3 changed files with 18 additions and 6 deletions
|
@ -39,6 +39,7 @@ Usage: ./dev-cli.py [OPTIONS] COMMAND [ARGS]...
|
||||||
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
|
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
|
||||||
╭─ Commands ───────────────────────────────────────────────────────────────────────────────────────╮
|
╭─ Commands ───────────────────────────────────────────────────────────────────────────────────────╮
|
||||||
│ check-code-style Check code style by calling darker + flake8 │
|
│ check-code-style Check code style by calling darker + flake8 │
|
||||||
|
│ coverage Run tests and show coverage report. │
|
||||||
│ diffsettings Run "diffsettings" manage command against a "local_test" YunoHost │
|
│ diffsettings Run "diffsettings" manage command against a "local_test" YunoHost │
|
||||||
│ installation. │
|
│ installation. │
|
||||||
│ fix-code-style Fix code style of all your_cool_package source code files via darker │
|
│ fix-code-style Fix code style of all your_cool_package source code files via darker │
|
||||||
|
|
|
@ -1,24 +1,21 @@
|
||||||
"""
|
"""
|
||||||
CLI for development
|
CLI for development
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import shlex
|
import shlex
|
||||||
import sys
|
import sys
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
import for_runners_ynh
|
|
||||||
import rich_click as click
|
import rich_click as click
|
||||||
from cli_base.cli_tools import code_style
|
from cli_base.cli_tools import code_style
|
||||||
from cli_base.cli_tools.dev_tools import run_tox
|
from cli_base.cli_tools.dev_tools import run_coverage, run_tox
|
||||||
from cli_base.cli_tools.subprocess_utils import verbose_check_call
|
from cli_base.cli_tools.subprocess_utils import verbose_check_call
|
||||||
from cli_base.cli_tools.test_utils.snapshot import UpdateTestSnapshotFiles
|
from cli_base.cli_tools.test_utils.snapshot import UpdateTestSnapshotFiles
|
||||||
from cli_base.cli_tools.verbosity import OPTION_KWARGS_VERBOSE
|
from cli_base.cli_tools.verbosity import OPTION_KWARGS_VERBOSE
|
||||||
from cli_base.cli_tools.version_info import print_version
|
from cli_base.cli_tools.version_info import print_version
|
||||||
from cli_base.run_pip_audit import run_pip_audit
|
from cli_base.run_pip_audit import run_pip_audit
|
||||||
from django.core.management.commands.test import Command as DjangoTestCommand
|
from django.core.management.commands.test import Command as DjangoTestCommand
|
||||||
from for_runners_ynh import constants
|
|
||||||
from for_runners_ynh.constants import PACKAGE_ROOT
|
|
||||||
from for_runners_ynh.tests import setup_ynh_tests
|
|
||||||
from django_yunohost_integration.local_test import create_local_test
|
from django_yunohost_integration.local_test import create_local_test
|
||||||
from manageprojects.utilities.publish import publish_package
|
from manageprojects.utilities.publish import publish_package
|
||||||
from rich import print
|
from rich import print
|
||||||
|
@ -26,6 +23,11 @@ from rich.console import Console
|
||||||
from rich.traceback import install as rich_traceback_install
|
from rich.traceback import install as rich_traceback_install
|
||||||
from rich_click import RichGroup
|
from rich_click import RichGroup
|
||||||
|
|
||||||
|
import for_runners_ynh
|
||||||
|
from for_runners_ynh import constants
|
||||||
|
from for_runners_ynh.constants import PACKAGE_ROOT
|
||||||
|
from for_runners_ynh.tests import setup_ynh_tests
|
||||||
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
@ -211,6 +213,14 @@ def test():
|
||||||
_run_django_test_cli(argv=sys.argv, exit_after_run=True)
|
_run_django_test_cli(argv=sys.argv, exit_after_run=True)
|
||||||
|
|
||||||
|
|
||||||
|
@cli.command() # Dummy command
|
||||||
|
def coverage():
|
||||||
|
"""
|
||||||
|
Run tests and show coverage report.
|
||||||
|
"""
|
||||||
|
run_coverage()
|
||||||
|
|
||||||
|
|
||||||
@cli.command() # Dummy "tox" command
|
@cli.command() # Dummy "tox" command
|
||||||
def tox():
|
def tox():
|
||||||
"""
|
"""
|
||||||
|
@ -273,6 +283,7 @@ def main():
|
||||||
command_map = {
|
command_map = {
|
||||||
'test': _run_django_test_cli,
|
'test': _run_django_test_cli,
|
||||||
'tox': run_tox,
|
'tox': run_tox,
|
||||||
|
'coverage': run_coverage,
|
||||||
}
|
}
|
||||||
if real_func := command_map.get(command):
|
if real_func := command_map.get(command):
|
||||||
real_func(argv=sys.argv, exit_after_run=True)
|
real_func(argv=sys.argv, exit_after_run=True)
|
||||||
|
|
|
@ -19,7 +19,7 @@ code = "https://github.com/jedie/django-for-runners"
|
||||||
|
|
||||||
[integration]
|
[integration]
|
||||||
# https://yunohost.org/en/packaging_manifest#integration-section
|
# https://yunohost.org/en/packaging_manifest#integration-section
|
||||||
yunohost = ">=11"
|
yunohost = ">=11.2"
|
||||||
architectures = "all"
|
architectures = "all"
|
||||||
multi_instance = true
|
multi_instance = true
|
||||||
ldap = true
|
ldap = true
|
||||||
|
|
Loading…
Reference in a new issue