Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use relative imports throughout tests | Jon Dufresne | 2017-12-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | The tests relied on Python2 relative import semantics. Python3 changed import semantics to always search sys.path by default. To import using a relative path it must have a leading dot. Forward compatible with newer Pythons. Works towards the goal of moving tests outside of the installed package. For more information, see PEP-328: https://www.python.org/dev/peps/pep-0328/ | ||||
* | Always import the system unittest | Jon Dufresne | 2017-12-01 | 1 | -1/+1 |
| | | | | | | | There is no need to import testutils.unittest instead of simply unittest. They are simple aliases. Use system unittest to be more regular, consistent as well as idiomatic with the wider Python community. | ||||
* | Skip tests with server not supporting NULL in array | Daniele Varrazzo | 2017-02-06 | 1 | -3/+6 |
| | |||||
* | Adding some boilerplate for the new module | Daniele Varrazzo | 2017-01-01 | 1 | -1/+3 |
| | |||||
* | Added ipaddress objects conversion | Daniele Varrazzo | 2016-10-11 | 1 | -0/+131 |
Close #387 |