summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* Redact ingored_parameters from CachedResponse.urlJordan Cook2021-09-152-6/+24
* Alias/rename old_data_on_error to stale_if_error for consistency with Cache-C...Jordan Cook2021-09-061-8/+14
* Use blake2 instead of sha256 for hashing request infoJordan Cook2021-09-062-3/+4
* Add a bit of missing test coverageJordan Cook2021-09-064-13/+36
* Allow match_headers to optionally accept a list of specific headers to matchJordan Cook2021-09-064-13/+8
* Alias/rename 'include_get_headers' to 'match_headers' for clarity (backwards-...Jordan Cook2021-09-061-6/+12
* Revert renaming DynamoDB backend classes; a minor inconsistency is probably b...Jordan Cook2021-08-301-6/+6
* Use pathlib.Path objects for all file paths in Filesystem and SQLite backendsJordan Cook2021-08-292-12/+11
* Allow has_url(), delete_url(), and create_key() to optionally take requests.R...Jordan Cook2021-08-281-2/+20
* Add some additional tests for cache key normalizationJordan Cook2021-08-281-2/+39
* Enable conditional requests by defaultJordan Cook2021-08-261-14/+6
* Minor optimization: exclude redundant CachedResponse.cache_key and CachedHTTP...Jordan Cook2021-08-251-2/+1
* Move 'Cache Files' docs that apply to both SQLite and Filesystem backends to ...Jordan Cook2021-08-251-6/+6
* Add BaseCache.update() method as a shortcut for exporting to a different cach...Jordan Cook2021-08-251-0/+11
* Fix incorrect location of redirects.sqlite when using filesystem backendJordan Cook2021-08-232-1/+8
* Add appdirs as a dependency, and add 'use_cache_dir' option to SQLite and Fil...Jordan Cook2021-08-212-0/+15
* Add support for SQLite in-memory databasesJordan Cook2021-08-201-1/+16
* Make DynamoDB and MongoDB naming consistentJordan Cook2021-08-201-2/+2
* Add pytest-rerunfailures to rerun a flaky testJordan Cook2021-08-201-0/+2
* Add FileCache.paths() wrapper method, and return a list instead of generatorJordan Cook2021-08-201-11/+11
* Use pytest tmpdir fixture + UUID instead of NamedTemporaryFileJordan Cook2021-08-191-29/+19
* Rename DbDict to SQLiteDict for consistency with other backends (with aliases...Jordan Cook2021-08-193-17/+17
* s/whitelist/allowlistJordan Cook2021-08-191-1/+1
* Increase integration test timeout for DynamoDB, since it has a longer startup...Jordan Cook2021-08-144-15/+15
* Add support for custom cache keysJordan Cook2021-08-142-2/+13
* Add unit tests for new header supportJordan Cook2021-08-144-14/+116
* Add support for Last-Modified + If-Modified-Since headersJordan Cook2021-08-141-5/+0
* Convert CacheActions into an attrs classJordan Cook2021-08-141-7/+17
* Drop testing for requests <=0.21Jordan Cook2021-08-141-4/+0
* Remove deprecated 'core' module and BaseCache.remove_old_entries()Jordan Cook2021-08-142-21/+5
* Drop support for python 3.6Jordan Cook2021-08-142-8/+0
* Add a basic PR template and code of conductv0.7.4Jordan Cook2021-08-141-0/+0
* Run integration tests in parallel, and combine MongoDB and GridFS tests into ...Jordan Cook2021-08-122-41/+29
* Parallelize unit tests per module instead of per functionJordan Cook2021-08-122-15/+15
* Add more test coverage for cache_control and cache_keys modulesJordan Cook2021-08-123-4/+43
* Add test coverage for optional serialization dependenciesJordan Cook2021-08-122-33/+52
* Add some more details to contributing guide, and add sample caches for 0.7 pa...Jordan Cook2021-08-104-0/+4
* SQLite clear(): first attempt DROP TABLE, then delete and re-initialize the c...Jordan Cook2021-08-101-0/+21
* Apply whitespace/EOF fixes and isort updatesJordan Cook2021-08-0817-16/+25
* Add example for using requests-cache with responsesJordan Cook2021-08-071-0/+61
* Add better examples for using requests-cache with requests-mockJordan Cook2021-08-075-0/+132
* For filesystem backend, add an appropriate file extension to cache filesJordan Cook2021-08-031-2/+11
* Use BaseCache.clear() BaseStorage.clear() prioer to integration testsJordan Cook2021-08-021-2/+1
* Add a `BaseCache.delete_urls()` methodJordan Cook2021-08-021-3/+13
* Update `DbDict.bulk_delete()` to support deleting more items than SQLite's va...Jordan Cook2021-08-021-4/+27
* Update `DbCache.clear()` to succeed even if the database is corruptedJordan Cook2021-08-021-3/+3
* Fix generate_test_db script, and add a basic script for testing cache write s...Jordan Cook2021-07-311-27/+20
* Add CachedResponse.cache_key attribute and update in CachedSession.send()Jordan Cook2021-07-203-8/+11
* Add support for Response.next when 302 responses are cached directlyJordan Cook2021-07-161-2/+17
* Fix cache_control option to correctly toggle cache header usage (off by default)Jordan Cook2021-07-092-8/+19