lackadaisical

A Python package to keep an eye on slow code

MIT License

Downloads
41
Stars
1
Committers
2

Lackadaisical

adjective: lacking spirit or liveliness.

Lackadaisical is a Python package for keeping an eye on slow code.

Usage

To assert that a block of code should execute and return within a number of seconds, use lackadaisical.assert_faster_than as either a decorator or a context manager.

For example, assert_faster_than will raise lackadaisical.TooSlow if this test doesn't finish within 30 seconds of starting:

from lackadaisical import assert_faster_than

@assert_faster_than(30)
def test_my_slow_function() -> None:
    my_slow_function()

In this example, the test's setup is free to take as long as it needs and only the slow function is monitored:

from lackadaisical import assert_faster_than

def test_my_slow_function() -> None:
    data = my_slow_preparation()

    with assert_faster_than(30):
        my_slow_function(data)

assert_faster_than will not interrupt your code's execution after its time has elapsed, but lackadaisical.TooSlow will report the difference between the actual and expected execution times to help you diagnose the problem.

Operation took 2.6 seconds (expected 2.0 at most)

Installation

Lackadaisical requires Python 3.9 or later and can be installed from PyPI.

pip install lackadaisical

Support

Please submit all your questions, feature requests and bug reports at github.com/cariad/lackadaisical/issues. Thank you!

Licence

Lackadaisical is open-source and released under the MIT License.

You don't have to give attribution in your project, but -- as a freelance developer with rent to pay -- I appreciate it!

Author

Hello! 👋 I'm Cariad Eccleston, and I'm a freelance Amazon Web Services architect, DevOps evangelist, CI/CD pipeline engineer and backend developer.

You can find me at cariad.earth, github/cariad, linkedin/cariad and on Mastodon at @[email protected].

Package Rankings
Top 33.22% on Pypi.org
Badges
Extracted from project README
codecov
Related Projects