Skip to content

Commit a3582cc

Browse files
committed
fix: removed pytest warnings
1 parent fe50e18 commit a3582cc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/test_execution_hooks_registry.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
class TestPlugin(ExecutionHooksBasePlugin):
2424
"""Test plugin for registry testing."""
2525

26+
__test__ = False
2627
description: ClassVar[str] = "Test plugin for unit tests"
2728

2829
test_param: str = "default"
@@ -31,6 +32,7 @@ class TestPlugin(ExecutionHooksBasePlugin):
3132
class TestVOPlugin(ExecutionHooksBasePlugin):
3233
"""Test vo-specific plugin."""
3334

35+
__test__ = False
3436
description: ClassVar[str] = "Test VO plugin"
3537
vo: ClassVar[Optional[str]] = "test_exp"
3638

@@ -40,6 +42,7 @@ class TestVOPlugin(ExecutionHooksBasePlugin):
4042
class TestSecondVOPlugin(ExecutionHooksBasePlugin):
4143
"""Test plugin for second vo."""
4244

45+
__test__ = False
4346
description: ClassVar[str] = "Test plugin for second VO"
4447
vo: ClassVar[Optional[str]] = "exp2"
4548

0 commit comments

Comments
 (0)