We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb3f54 commit 9d27fe6Copy full SHA for 9d27fe6
.travis.yml
@@ -84,6 +84,16 @@ matrix:
84
addons:
85
postgresql: '9.6'
86
87
+ - os: linux
88
+ dist: trusty
89
+ sudo: required
90
+ language: python
91
+ python: "3.6-dev"
92
+ env: BUILD=full PGVERSION=9.6
93
+ services: [postgresql, docker]
94
+ addons:
95
+ postgresql: '9.6'
96
+
97
cache:
98
directories:
99
- $HOME/.cache/pip
tests/test_record.py
@@ -263,7 +263,8 @@ def test_record_cmp(self):
263
self.assertGreater(r5, r7)
264
self.assertGreater(r5, r4)
265
266
- with self.assertRaisesRegex(TypeError, 'unorderable'):
+ with self.assertRaisesRegex(
267
+ TypeError, "unorderable|'<' not supported"):
268
r1 < r8
269
270
self.assertEqual(
0 commit comments