Metadata-Version: 1.1
Name: pytest-antilru
Version: 0.2.0
Summary: Bust functools.lru_cache when running pytest to avoid test pollution
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: Caching with functools.lru_cache is great for performance. It works so well that it'll even
        speed up your unit test runs. All you need to sacrifice in return is test isolation and your sanity.
        
        Imagine, you mock some things out and a function caches those results. On your next test run, it doesn't matter what you
        mock, the results are already cached. Now trying running those two test out-of-order sequence and tell me how it goes.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Pytest
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
