Files
ansible/test/integration/targets/plugin_namespace/test_plugins/test_test.py
Matt Davis ff6998f2b9 Switch to stackwalk caller ID (#85095)
* See changelog fragment for most changes.
* Defer early config warnings until display is functioning, eliminating related fallback display logic.
* Added more type annotations and docstrings.
* ansible-test - pylint sanity for deprecations improved.
* Refactored inline legacy resolutions in PluginLoader.

Co-authored-by: Matt Clay <matt@mystile.com>
2025-05-05 18:00:02 -07:00

16 lines
349 B
Python

from __future__ import annotations
import re
def test_name_ok(value):
# test names include a unique hash value to prevent shadowing of other plugins
return bool(re.match(r'^ansible\.plugins\.test\.test_test_[0-9]+$', __name__))
class TestModule:
def tests(self):
return {
'test_name_ok': test_name_ok,
}