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:
rallytime 2018-09-06 13:30:50 -04:00
parent aa560c5a8b
commit 0f3881ab4f
No known key found for this signature in database
GPG key ID: E8F1A4B90D0DEA19

View file

@ -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()