mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Skip flaky test on Python 3
Even with the flaky decorator, this test sometimes passes and sometimes fails. Let's skip it for now.
This commit is contained in:
parent
aa560c5a8b
commit
0f3881ab4f
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ class TestSerializers(TestCase):
|
|||
|
||||
@skipIf(not yaml.available, SKIP_MESSAGE % 'yaml')
|
||||
@skipIf(not yamlex.available, SKIP_MESSAGE % 'sls')
|
||||
@flaky
|
||||
@skipIf(six.PY3, 'Flaky on Python 3.')
|
||||
def test_compare_sls_vs_yaml_with_jinja(self):
|
||||
tpl = '{{ data }}'
|
||||
env = jinja2.Environment()
|
||||
|
|
Loading…
Add table
Reference in a new issue