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.
ALL_SUBDIRECTORIES: Whether to search all subdirectories
CATCH_EXCEPTIONS: Catch all exceptions and report at the end
EXCLUDE: Which modules to exclude
EXPECTED_TO_FAIL: Which modules are expected to fail
INCLUDE: Which modules to exclude
PROJECT_PATHS: Roots for searching subdirectories
SKIP_PREFIXES: Skip subdirectories that start with these prefixes
WARNINGS_ACTION: What to do on warnings
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file impall-0.9.11.tar.gz
.
File metadata
- Download URL: impall-0.9.11.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a449007a4fe665627beafcce62de3fecb6292f7a5df6e4c3fc2a36dcdc10a28f |
|
MD5 | d041d75b102f7de06de395ffca05e0b7 |
|
BLAKE2b-256 | bae60a8f678f322823cb8eff925fb07e802b8515b46032d12ea51da2675d72ad |
File details
Details for the file impall-0.9.11-py3-none-any.whl
.
File metadata
- Download URL: impall-0.9.11-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41fc344dfeae14071859716981d1c4ef3dcbe4a4c3a1274bc0ac096ff632c1b5 |
|
MD5 | 00cc0996dcacc05abbe94daa2cb48e1c |
|
BLAKE2b-256 | 6fa8a03c0ddfc4df978e2cfb7fc1121062840151f9468a507c7bbb9b2c570142 |