changeset cce6b28bf594 in trytond:5.6
details: https://hg.tryton.org/trytond?cmd=changeset&node=cce6b28bf594
description:
        Prepare release 5.6.16 [skip ci]
diffstat:

 CHANGELOG                   |  3 +++
 trytond/tests/test_tools.py |  2 ++
 2 files changed, 5 insertions(+), 0 deletions(-)

diffs (22 lines):

diff -r 801d153ef88d -r cce6b28bf594 CHANGELOG
--- a/CHANGELOG Mon Apr 12 20:54:03 2021 +0200
+++ b/CHANGELOG Wed May 05 22:41:16 2021 +0200
@@ -1,3 +1,6 @@
+Version 5.6.16 - 2021-05-05
+* Bug fixes (see mercurial logs for details)
+
 Version 5.6.15 - 2021-04-02
 * Bug fixes (see mercurial logs for details)
 
diff -r 801d153ef88d -r cce6b28bf594 trytond/tests/test_tools.py
--- a/trytond/tests/test_tools.py       Mon Apr 12 20:54:03 2021 +0200
+++ b/trytond/tests/test_tools.py       Wed May 05 22:41:16 2021 +0200
@@ -701,6 +701,8 @@
         self.assertEqual(
             localize_domain(domain, 'x', True), [['b.c', '=', 1, 'z']])
 
+    @unittest.skipIf(
+        sys.version_info < (3, 6), "comparison relies on dict insertion order")
     def test_prepare_reference_domain(self):
         domain = [['x', 'like', 'A%']]
         self.assertEqual(

Reply via email to