summary
- convenience function to clear all caches in one call. Closes 316.
python
import pypyr.cache.admin as cache_admin
cache_admin.clear_all()
- disable caching entirely with new `no_cache` mode. Closes 317
python
from pypyr.config import config
from pypyr import pipelinerunner
disable all caching
config.no_cache = True
This will NOT save `my-pipe` to cache once its loaded.
context = pipelinerunner.run(pipeline_name='my-pipe')
What's Changed
* clear all cache, codecov token, tox 4 by yaythomas in https://github.com/pypyr/pypyr/pull/318
* no cache mode by yaythomas in https://github.com/pypyr/pypyr/pull/319
* Bump version: 5.7.1 → 5.8.0 by yaythomas in https://github.com/pypyr/pypyr/pull/320
**Full Changelog**: https://github.com/pypyr/pypyr/compare/v5.7.1...v5.8.0