diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 20:17:41 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 20:17:41 +0000 |
commit | 733be7471242b9d2c0395817a650599d7d14317d (patch) | |
tree | 52ccca05aa6ce6e664cfd4f7b8344124e70115ad /tests/lsp_tests | |
parent | Releasing progress-linux version 0.1.26-0.0~progress7.99u1. (diff) | |
download | debputy-733be7471242b9d2c0395817a650599d7d14317d.tar.xz debputy-733be7471242b9d2c0395817a650599d7d14317d.zip |
Merging upstream version 0.1.27.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/lsp_tests')
-rw-r--r-- | tests/lsp_tests/conftest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/lsp_tests/conftest.py b/tests/lsp_tests/conftest.py index 2aff4a2..ec12e9a 100644 --- a/tests/lsp_tests/conftest.py +++ b/tests/lsp_tests/conftest.py @@ -24,14 +24,13 @@ except ImportError: HAS_PYGLS = False -@pytest.fixture(scope="session") +@pytest.fixture(scope="session", autouse=True) def enable_logging() -> None: setup_logging(log_only_to_stderr=True, reconfigure_logging=True) @pytest.fixture() def ls( - enable_logging, debputy_plugin_feature_set: PluginProvidedFeatureSet, ) -> "LanguageServer": if not HAS_PYGLS: |