diff --git a/odoo_openupgrade_wizard/cli_init.py b/odoo_openupgrade_wizard/cli_init.py index 214dabf..09d5f2c 100644 --- a/odoo_openupgrade_wizard/cli_init.py +++ b/odoo_openupgrade_wizard/cli_init.py @@ -20,8 +20,9 @@ from odoo_openupgrade_wizard.tools_system import ( required=True, prompt=True, type=str, - help="Name of your project without spaces neither special chars." - " exemple 'my-customer-9-12'. This will be used to tag with a friendly" + help="Name of your project without spaces neither special" + " chars or uppercases. exemple 'my-customer-9-12'." + " This will be used to tag with a friendly" " name the odoo docker images.", ) @click.option( diff --git a/tests/cli_B_02_docker_build_test.py b/tests/cli_B_02_docker_build_test.py index 0a1de7b..9a27382 100644 --- a/tests/cli_B_02_docker_build_test.py +++ b/tests/cli_B_02_docker_build_test.py @@ -16,6 +16,7 @@ def test_cli_docker_build(): "docker-build", "--releases=14.0", ], + catch_exceptions=False, ) assert result.exit_code == 0