From 5ef04129ed5c32daef3a7c2edb5dbed0a965e7b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= <6774676+eumiro@users.noreply.github.com> Date: Mon, 26 Jun 2023 19:02:13 +0200 Subject: [PATCH] Remove trailing dot after repo URL --- pre_commit/repository.py | 2 +- pre_commit/store.py | 2 +- tests/commands/install_uninstall_test.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pre_commit/repository.py b/pre_commit/repository.py index 040f238f..5cc0e0de 100644 --- a/pre_commit/repository.py +++ b/pre_commit/repository.py @@ -65,7 +65,7 @@ def _hook_installed(hook: Hook) -> bool: def _hook_install(hook: Hook) -> None: - logger.info(f'Installing environment for {hook.src}.') + logger.info(f'Installing environment for {hook.src}') logger.info('Once installed this environment will be reused.') logger.info('This may take a few minutes...') diff --git a/pre_commit/store.py b/pre_commit/store.py index 487e3e79..6201c15a 100644 --- a/pre_commit/store.py +++ b/pre_commit/store.py @@ -156,7 +156,7 @@ class Store: if result: # pragma: no cover (race) return result - logger.info(f'Initializing environment for {repo}.') + logger.info(f'Initializing environment for {repo}') directory = tempfile.mkdtemp(prefix='repo', dir=self.directory) with clean_path_on_failure(directory): diff --git a/tests/commands/install_uninstall_test.py b/tests/commands/install_uninstall_test.py index 8b0d3ece..7970f684 100644 --- a/tests/commands/install_uninstall_test.py +++ b/tests/commands/install_uninstall_test.py @@ -143,7 +143,7 @@ FILES_CHANGED = ( NORMAL_PRE_COMMIT_RUN = re_assert.Matches( - fr'^\[INFO\] Initializing environment for .+\.\n' + fr'^\[INFO\] Initializing environment for .+\n' fr'Bash hook\.+Passed\n' fr'\[master [a-f0-9]{{7}}\] commit!\n' fr'{FILES_CHANGED}' @@ -297,7 +297,7 @@ def test_environment_not_sourced(tempdir_factory, store): FAILING_PRE_COMMIT_RUN = re_assert.Matches( - r'^\[INFO\] Initializing environment for .+\.\n' + r'^\[INFO\] Initializing environment for .+\n' r'Failing hook\.+Failed\n' r'- hook id: failing_hook\n' r'- exit code: 1\n' @@ -394,7 +394,7 @@ def test_install_with_existing_non_utf8_script(tmpdir, store): FAIL_OLD_HOOK = re_assert.Matches( r'fail!\n' - r'\[INFO\] Initializing environment for .+\.\n' + r'\[INFO\] Initializing environment for .+\n' r'Bash hook\.+Passed\n', )