|
@@ -1,16 +1,11 @@
|
|
|
-# coding: utf-8
|
|
|
"""
|
|
|
Integration tests for renderer functions
|
|
|
"""
|
|
|
|
|
|
-from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
|
|
import pytest
|
|
|
-import salt.utils.platform
|
|
|
-from salt.ext import six
|
|
|
from tests.support.case import ModuleCase
|
|
|
from tests.support.helpers import flaky, slowTest
|
|
|
-from tests.support.unit import skipIf
|
|
|
|
|
|
|
|
|
@pytest.mark.windows_whitelisted
|
|
@@ -29,9 +24,6 @@ class TestJinjaRenderer(ModuleCase):
|
|
|
self.assertTrue(state_ret["result"])
|
|
|
|
|
|
@flaky
|
|
|
- @skipIf(
|
|
|
- salt.utils.platform.is_darwin() and six.PY2, "This test hangs on OS X on Py2"
|
|
|
- )
|
|
|
@slowTest
|
|
|
def test_salt_contains_function(self):
|
|
|
"""
|