Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added decorator to clean up the adaptation mappings after testsfix-948 | Daniele Varrazzo | 2019-09-04 | 1 | -0/+17 |
| | | | | | | | Many tests were doing it manually, some weren't doing it and resulted in failure if run in different order. Close #948 | ||||
* | Shorter timeout in the async tests select | Daniele Varrazzo | 2019-03-16 | 1 | -2/+2 |
| | |||||
* | Use PY2, PY3 for conditional code instead of sys.version_info | Daniele Varrazzo | 2019-03-16 | 1 | -3/+3 |
| | |||||
* | Use errors module to catch a specific postgres error | Daniele Varrazzo | 2019-03-16 | 1 | -6/+3 |
| | |||||
* | Other import moved to top level in tests | Daniele Varrazzo | 2019-03-16 | 1 | -10/+7 |
| | |||||
* | TextIOBase moved to tests compat imports | Daniele Varrazzo | 2019-03-16 | 1 | -0/+3 |
| | |||||
* | Move imports to the top of the module across tests | Jon Dufresne | 2019-03-16 | 1 | -3/+3 |
| | | | | | | | | | | Allows removing many duplicate imports and better follows PEP8 guidelines: https://www.python.org/dev/peps/pep-0008/#imports > Imports are always put at the top of the file, just after any module > comments and docstrings, and before module globals and constants. | ||||
* | Copyright year updated | Daniele Varrazzo | 2019-02-17 | 1 | -1/+1 |
| | | | | | ag -l Copyright | xargs sed -i \ "s/\(.*copyright (C) [0-9]\+\)\(-[0-9]\+\)\?\(.*\)/\1-$(date +%Y)\3/I" | ||||
* | Skip tests involving ctypes on Windows | Daniele Varrazzo | 2019-02-16 | 1 | -0/+3 |
| | | | | No idea about how to import libpq. | ||||
* | Added connection.pgconn_ptr and cursor.pgresult_ptr | Daniele Varrazzo | 2019-02-16 | 1 | -0/+14 |
| | | | | | | Allow interacting with libpq in Python via ctypes. See #782. | ||||
* | Simplify 'decorate_all_tests' usage by decorating the test class | Jon Dufresne | 2018-12-01 | 1 | -73/+44 |
| | | | | | Skip tests as early as possible by decorating the whole class with unittest.skipIf instead of every test method individually. | ||||
* | Use class decorators to decorate all testsdecorators-fun | Daniele Varrazzo | 2018-10-30 | 1 | -5/+37 |
| | | | | | | Test decorators changed so that they can be applied either to a method or to a class. Of course their double nature is implemented by a decorator. | ||||
* | Full flake8 3.5 cleanup | Daniele Varrazzo | 2018-10-23 | 1 | -2/+4 |
| | |||||
* | Use the connection.info properties instead of the legacy methodsconnection-info | Daniele Varrazzo | 2018-10-13 | 1 | -4/+4 |
| | |||||
* | Prefer https:// URLs when available | Jon Dufresne | 2018-09-22 | 1 | -1/+1 |
| | |||||
* | In tests, use compat.py where there is overlap | Jon Dufresne | 2017-12-11 | 1 | -3/+2 |
| | |||||
* | Avoid installing tests to site-packages | Jon Dufresne | 2017-12-10 | 1 | -0/+17 |
| | | | | | | | | For library end users, there is no need to install tests alongside the package itself. This keeps the tests available for development without adding extra packages to user's site-packages directory. Reduces the size of the installed package. Avoids accidental execution of test code by an installed package. | ||||
* | Use relative imports throughout tests | Jon Dufresne | 2017-12-10 | 1 | -2/+2 |
| | | | | | | | | | | | | | | 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/ | ||||
* | Remove unnecessary script_to_py3; make scripts compatible instead | Jon Dufresne | 2017-12-01 | 1 | -28/+0 |
| | | | | Part of the work towards moving tests out of the installed package. | ||||
* | Dropped unused test functions | Daniele Varrazzo | 2017-11-28 | 1 | -3/+0 |
| | |||||
* | Remove redundant hasattr checks | Hugo | 2017-11-28 | 1 | -31/+2 |
| | |||||
* | Merge remote-tracking branch 'jdufresne/uuid' | Daniele Varrazzo | 2017-11-28 | 1 | -5/+0 |
|\ | |||||
| * | Remove uuid workaround for older Pythons | Jon Dufresne | 2017-11-26 | 1 | -5/+0 |
| | | | | | | | | uuid is available on all Python versions supported by psycopg2. | ||||
* | | Merge remote-tracking branch 'jdufresne/iobase' | Daniele Varrazzo | 2017-11-28 | 1 | -14/+0 |
|\ \ | |||||
| * | | Remove io.TextIOBase workaround for Python <= 2.5 | Jon Dufresne | 2017-11-26 | 1 | -14/+0 |
| |/ | | | | | | | | | io.TextIOBase is available on all Python versions supported by psycopg2. Can remove all workarounds. | ||||
* | | Remove workarounds for namedtuple on Python <= 2.5 | Jon Dufresne | 2017-11-26 | 1 | -13/+0 |
|/ | | | | | | namedtuple is available on all Python versions supported by psycopg2. It was first introduced in Python 2.6. Can remove all workarounds and special documentation. | ||||
* | Use modern except syntax throughout project | Jon Dufresne | 2017-11-20 | 1 | -3/+3 |
| | | | | | | The syntax "except Exception, exc:" is deprecated. All Python versions supported by psycopg2 support the newer, modern syntax. Forward compatible with future Python versions. | ||||
* | Skip the tests according to the earliest of libpq built/linked. | Daniele Varrazzo | 2017-03-02 | 1 | -1/+1 |
| | |||||
* | Don't try to use unittest2no-unittest2 | Daniele Varrazzo | 2017-03-01 | 1 | -8/+1 |
| | | | | | Modules importing unittest directly would miss the monkeypatch: see ticket #516. | ||||
* | Deal consistently with E'' quotes in tests | Daniele Varrazzo | 2017-02-06 | 1 | -1/+14 |
| | |||||
* | assertDsnEqual moved as TestSuite method | Daniele Varrazzo | 2017-02-06 | 1 | -4/+7 |
| | |||||
* | Merge branch 'async-keyword' | Daniele Varrazzo | 2017-02-03 | 1 | -3/+11 |
|\ | | | | | | | Close #495 | ||||
| * | Added async_ as an alias for async | Daniele Varrazzo | 2017-02-03 | 1 | -1/+5 |
| | | | | | | | | | | Added in argument for psycopg2.connect() and connection.__init__, and for the connection.async attribute. | ||||
| * | Convert warnings into errors on test | Daniele Varrazzo | 2017-02-03 | 1 | -2/+6 |
| | | |||||
* | | Added note about finding slow tests | Daniele Varrazzo | 2017-02-02 | 1 | -1/+6 |
| | | |||||
* | | Allow skipping the slow testmanylinux | Daniele Varrazzo | 2017-02-02 | 1 | -1/+10 |
|/ | | | | | | | | It's not so much about tests being slow: some just get stuck and timeout travis. Skipped all tests taking about more than 0.2s to run on my laptop. Fast testing takes about 8s instead of 24. | ||||
* | Added test to verify bug #482 | Daniele Varrazzo | 2016-12-25 | 1 | -1/+10 |
| | |||||
* | Fixed tests failing on Python 2.6 | Daniele Varrazzo | 2016-12-24 | 1 | -0/+3 |
| | |||||
* | Python source cleanup using flake8 | Daniele Varrazzo | 2016-10-11 | 1 | -5/+20 |
| | |||||
* | Merge branch 'master' into replication-protocol | Daniele Varrazzo | 2016-08-07 | 1 | -1/+1 |
|\ | | | | | | | | | Conflicts: tests/testconfig.py | ||||
| * | Fix scattered grammar/spelling errors in comments, debug output, etc. | Greg Ward | 2016-06-30 | 1 | -1/+1 |
| | | |||||
* | | Move replication connection to C level. | Oleksandr Shulgin | 2015-10-27 | 1 | -3/+0 |
| | | |||||
* | | Fix async replication and test. | Oleksandr Shulgin | 2015-10-15 | 1 | -1/+20 |
|/ | |||||
* | Report NotSupportedError for PGRES_COPY_BOTH and PGRES_SINGLE_TUPLE | Daniele Varrazzo | 2015-09-30 | 1 | -3/+26 |
| | | | | Fixes #352. | ||||
* | Add libpq version discovery | Oleksandr Shulgin | 2015-06-01 | 1 | -0/+37 |
| | |||||
* | Fix several typos | Hyunjun Kim | 2015-05-03 | 1 | -1/+2 |
| | |||||
* | Skip test_cleanup_on_badconn_close on Windows | Jason Erickson | 2014-05-19 | 1 | -0/+12 |
| | | | | | | | | | | | The Windows server version of PostgreSQL uses a function called pgkill in the file kill.c in place of the UNIX kill function. This pgkill function simulates some of the SIGHUP like commands by passing signals through a named pipe. Because it is passing the signal through a pipe, the server doesn't get the kill signal immediately and therefore fails the test on test_connection.ConnectionTests.test_cleanup_on_badconn_close. Ideally, the test should check to see if the server is running on Windows, not the psycopg. | ||||
* | New implementation of Range sorting that works for Python 2.5 to 3.3, at least. | Chris Withers | 2014-02-18 | 1 | -0/+10 |
| | |||||
* | Skip tests on python implementations without getrefcount() | Daniele Varrazzo | 2013-05-06 | 1 | -0/+9 |
| | | | | PyPy is one of these. | ||||
* | Testing boilerplate unified in a single base class | Daniele Varrazzo | 2013-04-07 | 1 | -3/+50 |
| | | | | | The class makes a connection always available, allows creating new connection and closes everything on tear down. |