Skip to main content

Try to import all modules below a given root

Project description

A three-line unit test in your project automatically imports every Python file and module in it, optionally testing for warnings.

Why?

Not every file is covered by unit tests; and unit tests won’t report any new warnings that occur.

impall is a single-file library with a unit test that automatically imports every Python file and module in your project.

I drop include_all into each new project. It takes seconds, it inevitably catches lots of dumb problems early, and it requires no maintenance.

How to use impall

Install it with pip install impall, and use it by adding this tiny file (raw) anywhere in a project - it looks like this:

import impall


class ImpAllTest(impall.ImpAllTest):
    pass

and most of the time that’s all you need.

Overriding properties

ImpAllTest has eight properties that can be overridden.

  • CLEAR_SYS_MODULES: If True, sys.modules is reset after each import.

  • EXCLUDE: A list of modules that will not be imported at all.

  • FAILING: A list of modules that must fail.

  • INCLUDE: If non-empty, exactly the modules in the list will be loaded.

  • MODULES: If False, search all subdirectories.

  • PATHS: A list of paths to search from.

  • RAISE_EXCEPTIONS: If True, stop importing at the first exception

  • WARNINGS_ACTION: One of: default, error, ignore, always, module, once

Full documentation for each property is here.

To permanently override a test property, set it in the derived class, like this:

import impall


class ImpAllTest(impall.ImpAllTest):
    WARNINGS_ACTION = 'error'

To temporarily override a test property, set an environment variable before runnning the test, like this:

$ _IMPALL_WARNINGS_ACTION=error pytest

Using impall.py as a standalone program

The file impall.py is executable and is installed in the path by pip. You can use it on projects that you are evaluating or debugging like this:

$ impall.py [directory ..directory]

where if no directory is specified it uses the current directory.

You can use environment variables to set properties as above and for convenience there are also command line flags for each property, so you can write:

$ impall.py --catch_exceptions --all_directories --exclude=foo/bar

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

impall-1.1.0.tar.gz (10.0 kB view details)

Uploaded Source

Built Distribution

impall-1.1.0-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file impall-1.1.0.tar.gz.

File metadata

  • Download URL: impall-1.1.0.tar.gz
  • Upload date:
  • Size: 10.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.6

File hashes

Hashes for impall-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2af1be2188ac9c2f501d73ce5ff17da99416985d313f1005375afb9cc8da6b29
MD5 37b2a4b68aefb2acb1a38bb3dcf7c129
BLAKE2b-256 0c7c994c6134baa620fbd832c5b52ad545ca5322edd9ddf385320396129eb2ec

See more details on using hashes here.

File details

Details for the file impall-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: impall-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.6

File hashes

Hashes for impall-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 71913f378846caa3608ff51763f3e4c26a567b448bf410d9d637bd2d2aec766b
MD5 c0a62eb2e6daf90fba8c8338ef54ff20
BLAKE2b-256 513f0cdc57ba42ecdb280187c7e4af898be73cdcfab321fd0d9ace0cdd321bfd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page