Lint contracts defined with icontract library.
Project description
pyicontract-lint
pyicontract-lint lints contracts in Python code defined with icontract library.
The following checks are performed:
Description |
Identifier |
---|---|
File should be read and decoded correctly. |
unreadable |
A preconditions expects a subset of function’s arguments. |
pre-invalid-arg |
A snapshot expects at most an argument element of the function’s arguments. |
snapshot-invalid-arg |
If a snapshot is defined on a function, a postcondition must be defined as well. |
snapshot-wo-post |
A capture function must be defined in the contract. |
snapshot-wo-capture |
A postcondition expects a subset of function’s arguments. |
post-invalid-arg |
If a function returns None, a postcondition should not expect result as argument. |
post-result-none |
If a postcondition expects result argument, the function should not expect it. |
post-result-conflict |
If a postcondition expects OLD argument, the function should not expect it. |
post-old-conflict |
An invariant should only expect self argument. |
inv-invalid-arg |
A condition must be defined in the contract. |
no-condition |
File must be valid Python code. |
invalid-syntax |
Usage
Pyicontract-lint parses the code and tries to infer the imported modules and functions using astroid library. Hence you need to make sure that imported modules are on your PYTHONPATH before you invoke pyicontract-lint.
Once you set up the environment, invoke pyicontract-lint with a list of positional arguments as paths:
pyicontract-lint \
/path/to/some/directory/some-file.py \
/path/to/some/directory/another-file.py
You can also invoke it on directories. Pyicontract-lint will recursively search for *.py files (including the subdirectories) and verify the files:
pyicontract-lint \
/path/to/some/directory
By default, pyicontract-lint outputs the errors in a verbose, human-readable format. If you prefer JSON, supply it --format argument:
pyicontract-lint \
--format json \
/path/to/some/directory
If one or more checks fail, the return code will be non-zero. You can specify --dont_panic argument if you want to have a zero return code even though one or more checks failed:
pyicontract-lint \
--dont_panic \
/path/to/some/directory
To disable any pyicontract-lint checks on a file, add # pyicontract-lint: disabled on a separate line to the file. This is useful when you recursively lint files in a directory and want to exclude certain files.
Module icontract_lint
The API is provided in the icontract_lint module if you want to use pycontract-lint programmatically.
The main points of entry in icontract_line module are:
check_file(...): lint a single file,
check_recursively(...): lint a directory and
check_paths(...): lint files and directories.
The output is produced by functions output_verbose(...) and output_json(...).
Here is an example code that lints a list of given paths and produces a verbose output:
import pathlib
import sys
import icontract_lint
errors = icontract_lint.check_paths(paths=[
pathlib.Path('/some/directory/file.py'),
pathlib.Path('/yet/yet/another/directory'),
pathlib.Path('/another/directory/another_file.py'),
pathlib.Path('/yet/another/directory'),
])
output_verbose(errors=errors, stream=sys.stdout)
The full documentation of the module is available on readthedocs.
Installation
Install pyicontract-lint with pip:
pip3 install pyicontract-lint
Development
Check out the repository.
In the repository root, create the virtual environment:
python3 -m venv venv3
Activate the virtual environment:
source venv3/bin/activate
Install the development dependencies:
pip3 install -e .[dev]
We use tox for testing and packaging the distribution. Run:
tox
We also provide a set of pre-commit checks that lint and check code for formatting. Run them locally from an activated virtual environment with development dependencies:
./precommit.py
The pre-commit script can also automatically format the code:
./precommit.py --overwrite
Versioning
We follow Semantic Versioning. The version X.Y.Z indicates:
X is the major version (backward-incompatible),
Y is the minor version (backward-compatible), and
Z is the patch version (backward-compatible bug fix).
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
File details
Details for the file pyicontract-lint-2.1.4.tar.gz
.
File metadata
- Download URL: pyicontract-lint-2.1.4.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.7.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e73fded40b7a5ddc1cd2b03a826512bf9f490ffacf8e020636f25d26d1ed806 |
|
MD5 | 30e9494a5cc2f3be30218b7762e581a2 |
|
BLAKE2b-256 | 7861b0c3522132d36f9564f804aa73e4217e930f4b4dd06df5de52b02f5b316d |