<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/requests-cache.git/tests, branch pre-release</title>
<subtitle>github.com: reclosedev/requests-cache
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/'/>
<entry>
<title>Make sure all tests with SQLite dbs clean up after themselves</title>
<updated>2021-04-29T20:06:33+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-29T18:31:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=993d85cdb943caf565336eac9218a2290bc8c66b'/>
<id>993d85cdb943caf565336eac9218a2290bc8c66b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve performance a bit for remove_expired_responses()</title>
<updated>2021-04-29T20:06:33+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-28T04:41:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=ab81173b311e7a86473366f3d76eee21d817399a'/>
<id>ab81173b311e7a86473366f3d76eee21d817399a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add response details to CachedResponse str() and repr()</title>
<updated>2021-04-29T14:24:48+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-27T23:23:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=85da092b137c6b7004390512c82747f421ed606c'/>
<id>85da092b137c6b7004390512c82747f421ed606c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add BaseCache.keys() and values() methods</title>
<updated>2021-04-28T04:19:45+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-27T21:26:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=cfd5c391f546e5e9cfaeb5a0339750f9a790325a'/>
<id>cfd5c391f546e5e9cfaeb5a0339750f9a790325a</id>
<content type='text'>
* Update `BaseCache.urls` to return a generator instead of the whole list at once (which may use too much memory for particularly large caches)
* Update `BaseCache.urls` to just skip invalid responses instead of deleting them
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update `BaseCache.urls` to return a generator instead of the whole list at once (which may use too much memory for particularly large caches)
* Update `BaseCache.urls` to just skip invalid responses instead of deleting them
</pre>
</div>
</content>
</entry>
<entry>
<title>Include this behavior in old_data_on_error instead, to avoid complications</title>
<updated>2021-04-24T01:43:34+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-24T00:09:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=c51cc8886588faa96fb08ceeb798d8ecefaa6508'/>
<id>c51cc8886588faa96fb08ceeb798d8ecefaa6508</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add raise_for_status option</title>
<updated>2021-04-24T00:08:52+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-23T02:28:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=ea7f2369110cd93428bfa997618f0963cee19fb1'/>
<id>ea7f2369110cd93428bfa997618f0963cee19fb1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add use_temp option to SQLite backend</title>
<updated>2021-04-23T01:55:23+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-23T01:28:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=26f41c191c69a3d97e06cfa950b8c55867b7d9eb'/>
<id>26f41c191c69a3d97e06cfa950b8c55867b7d9eb</id>
<content type='text'>
Closes #243
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #243
</pre>
</div>
</content>
</entry>
<entry>
<title>Combine test_cache.py with BaseCacheTest to run these tests for all backends</title>
<updated>2021-04-23T01:55:23+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-22T22:16:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=6e1679f7fb53a7edd2133f3a5ab2d8ca40ddccdb'/>
<id>6e1679f7fb53a7edd2133f3a5ab2d8ca40ddccdb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Turn multi-threaded stress tests into test (sub)classes</title>
<updated>2021-04-22T05:21:49+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-22T05:02:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=3ec85f0107caedbe3b3bd8080bd3dac81b7baa17'/>
<id>3ec85f0107caedbe3b3bd8080bd3dac81b7baa17</id>
<content type='text'>
This is mainly to take advantage of fail-fast connection tests; otherwise, these tests may just
hang if backend dependenices are installed but backend services are not set up.
See issue #221 for details.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is mainly to take advantage of fail-fast connection tests; otherwise, these tests may just
hang if backend dependenices are installed but backend services are not set up.
See issue #221 for details.
</pre>
</div>
</content>
</entry>
<entry>
<title>Turn remaining unittest.TestCase classes into pytest-style test classes</title>
<updated>2021-04-22T05:21:49+00:00</updated>
<author>
<name>Jordan Cook</name>
<email>jordan.cook@pioneer.com</email>
</author>
<published>2021-04-22T04:33:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/requests-cache.git/commit/?id=b1070a950e0365085b7edf8ef2e4a65c77630ac9'/>
<id>b1070a950e0365085b7edf8ef2e4a65c77630ac9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
