From eb51f2ec35acbb873fe17f9508897f7146e07694 Mon Sep 17 00:00:00 2001 From: Dave Date: Fri, 20 Dec 2024 11:10:47 +0100 Subject: [PATCH] remove skipping --- tests/plugins/test_plugin_discovery.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/plugins/test_plugin_discovery.py b/tests/plugins/test_plugin_discovery.py index c6ffbe9735..a47bc8db82 100644 --- a/tests/plugins/test_plugin_discovery.py +++ b/tests/plugins/test_plugin_discovery.py @@ -49,14 +49,14 @@ def plugin_install(): del container[plugins.PluginContext] -@pytest.mark.skip + + def test_example_plugin() -> None: context = run_context.current() assert context.name == "dlt-test" assert context.data_dir == os.path.abspath(TEST_STORAGE_ROOT) -@pytest.mark.skip def test_cli_hook(script_runner: ScriptRunner) -> None: # new command result = script_runner.run(["dlt", "example", "--name", "John"])