<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/psycopg2.git/tests/testutils.py, branch issue-template</title>
<subtitle>github.com: psycopg/psycopg2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/'/>
<entry>
<title>Added decorator to clean up the adaptation mappings after tests</title>
<updated>2019-09-04T17:17:51+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-09-04T13:58:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=f08019e3568dd845bbefaffbe27c4909cf491d15'/>
<id>f08019e3568dd845bbefaffbe27c4909cf491d15</id>
<content type='text'>
Many tests were doing it manually, some weren't doing it and resulted in
failure if run in different order.

Close #948
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Many tests were doing it manually, some weren't doing it and resulted in
failure if run in different order.

Close #948
</pre>
</div>
</content>
</entry>
<entry>
<title>Shorter timeout in the async tests select</title>
<updated>2019-03-16T20:05:40+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-03-06T01:43:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=d61c902230a4b1449b365c95c9307fdd886a6110'/>
<id>d61c902230a4b1449b365c95c9307fdd886a6110</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use PY2, PY3 for conditional code instead of sys.version_info</title>
<updated>2019-03-16T19:54:40+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-03-16T17:15:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=dfb301b42be462f5a4f66b12a401753ab441543c'/>
<id>dfb301b42be462f5a4f66b12a401753ab441543c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use errors module to catch a specific postgres error</title>
<updated>2019-03-16T19:13:58+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-03-16T19:07:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=e8135ee2cf511aa855c62fc074f414617666df43'/>
<id>e8135ee2cf511aa855c62fc074f414617666df43</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Other import moved to top level in tests</title>
<updated>2019-03-16T19:13:58+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-03-16T18:56:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=b0119fef816daf4f47191359dc3fa609f9783e2c'/>
<id>b0119fef816daf4f47191359dc3fa609f9783e2c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TextIOBase moved to tests compat imports</title>
<updated>2019-03-16T18:41:59+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-03-16T18:41:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=aaba4dcf87431079203c900fbec8ca2a519392b9'/>
<id>aaba4dcf87431079203c900fbec8ca2a519392b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move imports to the top of the module across tests</title>
<updated>2019-03-16T18:03:41+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-03-16T15:30:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=d90ad8627d0a7244abeee7cd3a9418d529dc1428'/>
<id>d90ad8627d0a7244abeee7cd3a9418d529dc1428</id>
<content type='text'>
Allows removing many duplicate imports and better follows PEP8
guidelines:

https://www.python.org/dev/peps/pep-0008/#imports

&gt; Imports are always put at the top of the file, just after any module
&gt; comments and docstrings, and before module globals and constants.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows removing many duplicate imports and better follows PEP8
guidelines:

https://www.python.org/dev/peps/pep-0008/#imports

&gt; Imports are always put at the top of the file, just after any module
&gt; comments and docstrings, and before module globals and constants.
</pre>
</div>
</content>
</entry>
<entry>
<title>Copyright year updated</title>
<updated>2019-02-17T01:36:36+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-02-17T01:34:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=599432552aae4941c2b282e9251330f1357b2a45'/>
<id>599432552aae4941c2b282e9251330f1357b2a45</id>
<content type='text'>
    ag -l Copyright | xargs sed -i \
        "s/\(.*copyright (C) [0-9]\+\)\(-[0-9]\+\)\?\(.*\)/\1-$(date +%Y)\3/I"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    ag -l Copyright | xargs sed -i \
        "s/\(.*copyright (C) [0-9]\+\)\(-[0-9]\+\)\?\(.*\)/\1-$(date +%Y)\3/I"
</pre>
</div>
</content>
</entry>
<entry>
<title>Skip tests involving ctypes on Windows</title>
<updated>2019-02-16T17:12:52+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-02-16T17:07:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=3b7c083c3d92b7c1cd22c5af53b9ee18dc331db3'/>
<id>3b7c083c3d92b7c1cd22c5af53b9ee18dc331db3</id>
<content type='text'>
No idea about how to import libpq.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
No idea about how to import libpq.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added connection.pgconn_ptr and cursor.pgresult_ptr</title>
<updated>2019-02-16T17:12:52+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-02-16T16:30:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=7c7bbb9742734d1a1c0bc808d9730113249be4eb'/>
<id>7c7bbb9742734d1a1c0bc808d9730113249be4eb</id>
<content type='text'>
Allow interacting with libpq in Python via ctypes.

See #782.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow interacting with libpq in Python via ctypes.

See #782.
</pre>
</div>
</content>
</entry>
</feed>
