diff options
author | Matt Martz <matt@sivel.net> | 2021-03-27 03:10:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-27 03:10:00 +0100 |
commit | 88d6a721781c7459ed7a6e5dd7aa287dd2fb46b2 (patch) | |
tree | 11fe02dbe7b0007f901832bde07dafa508f3ad5f | |
parent | Add duplicated set filter and documentation (#72729) (diff) | |
download | ansible-88d6a721781c7459ed7a6e5dd7aa287dd2fb46b2.tar.xz ansible-88d6a721781c7459ed7a6e5dd7aa287dd2fb46b2.zip |
Temporarily disable strategy units (#74048)
-rw-r--r-- | test/units/plugins/strategy/test_strategy.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/units/plugins/strategy/test_strategy.py b/test/units/plugins/strategy/test_strategy.py index bfb694f2fb..6b60e692e8 100644 --- a/test/units/plugins/strategy/test_strategy.py +++ b/test/units/plugins/strategy/test_strategy.py @@ -32,6 +32,10 @@ from ansible.module_utils.six.moves import queue as Queue from ansible.playbook.handler import Handler from ansible.plugins.strategy import StrategyBase +import pytest + +pytestmark = pytest.mark.skipif(True, reason="Temporarily disabled due to fragile tests that need rewritten") + class TestStrategyBase(unittest.TestCase): |