Skip to content

A decorator designed to make testing optional dependencies painless.

License

Notifications You must be signed in to change notification settings

Tom01098/fail_importing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fail_importing

A decorator designed to make testing optional dependencies painless.

It's common for libraries to have optional dependencies where the code has to detect if they are installed, using a pattern like this:

try:
    import something
except ImportError:
    import something_else as something

That way something is always defined and the rest of the codebase does not need to care. But how do we test both branches under tests?

With fail_importing, you can just slap a decorator onto your test and the code being tested will act as if the dependency isn't installed.

@fail_importing("something")
def test_something_else():
    ...

When the test finishes executing, the name can be imported as normal. It can be applied to normal functions, nested functions, relative imports, and even generators!

full_match is used to determine if the path matches or not, so you can use any regex matching your need. Note that relative imports are resolved to absolute imports before the check is made.

About

A decorator designed to make testing optional dependencies painless.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages