Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/integration/minion/test_executor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging
import sys

import pytest

Expand All @@ -12,6 +13,10 @@ def setup(self):
self.run_function("saltutil.sync_all")

@pytest.mark.slow_test
@pytest.mark.skipif(
sys.version_info.minor == 11 and "venv-salt-minion" not in sys.executable,
reason="Flaky with Python 3.11",
)
def test_executor(self):
"""
test that dunders are set
Expand Down