| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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/
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
The syntax "except Exception, exc:" is deprecated. All Python versions
supported by psycopg2 support the newer, modern syntax. Forward
compatible with future Python versions.
|
| |
|
|
|
|
|
| |
At least it should fail with an error after 2 seconds, not waiting for
Travis timeout of 10 minutes.
|
|\
| |
| |
| | |
Close #495
|
| |
| |
| |
| |
| | |
Added in argument for psycopg2.connect() and connection.__init__, and
for the connection.async attribute.
|
|/
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
| |
The class makes a connection always available, allows creating
new connection and closes everything on tear down.
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
NEWS-2.3
tests/__init__.py
tests/test_lobject.py
tests/test_quote.py
tests/testutils.py
|
| |
| |
| |
| | |
As the test suite is now part of the source distribution.
|
| | |
|
|\ \
| |/
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
ChangeLog
NEWS-2.3
lib/extensions.py
psycopg/microprotocols.c
setup.py
|
| |
| |
| |
| |
| | |
If the cancel signal misses the race, this query will stay in the
backend until the sleep expires.
|
|/
|
|
|
|
| |
Dropped cyclic import from modules to tests: they were only working
because a second copy of the package was found in the project dir.
Use relative import so that 2to3 can do a good conversion.
|
| |
|
|
Add a cancel() method do the connection object that will interrupt
the current query using the libpq PQcancel() function.
|