Matej Cepl
e5df7d1422
to skip failing test test_dump_load_parameterized_collections (gh#ramonhagenaars/jsons#187). OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsons?expand=0&rev=2
24 lines
770 B
Diff
24 lines
770 B
Diff
---
|
|
tests/test_specific_versions.py | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
--- a/tests/test_specific_versions.py
|
|
+++ b/tests/test_specific_versions.py
|
|
@@ -2,7 +2,7 @@ import sys
|
|
import uuid
|
|
from datetime import datetime
|
|
from pathlib import Path
|
|
-from unittest import TestCase, skipUnless
|
|
+from unittest import TestCase, skipUnless, skip
|
|
|
|
import jsons
|
|
from jsons._compatibility_impl import get_type_hints
|
|
@@ -178,6 +178,7 @@ class TestSpecificVersions(TestCase):
|
|
loaded_dt = jsons.load(dumped_dt, datetime)
|
|
self.assertEqual(dt, loaded_dt)
|
|
|
|
+ @skip('Failing on 3.11+, gh#ramonhagenaars/jsons#187')
|
|
@only_version_3(9, and_above=True)
|
|
def test_dump_load_parameterized_collections(self):
|
|
import version_39
|