Pytest plugin enforcing line count limits
Project description
Overview
swarmauri_tests_loc_tersity is a pytest plugin that
keeps modules small and readable. It scans a package for Python files and
asserts that each file stays under a configurable line‑of‑code (LOC) limit
(docstrings included). The default limit is 400 lines.
The plugin runs in parameterized mode by default, turning every file into an individual test case. You can also switch to an aggregate mode that reports all failures as a single test.
Installation
pip install swarmauri_tests_loc_tersity
pytest automatically discovers the plugin once it is installed.
Usage
Parameterized (default)
Run pytest normally to create one LOC check per Python file:
pytest
Example failure:
E AssertionError: pkg/example.py has 425 lines (>400)
Aggregate
Use the --loc-mode=aggregate flag to consolidate checks into one test that
lists every file exceeding the threshold:
pytest --loc-mode=aggregate
Example output:
E pkg/example.py has 425 lines (>400)
E pkg/other.py has 410 lines (>400)
Customizing
--loc-root PATH– directory to scan (defaults to the package root)--loc-max-lines N– change the maximum line count
pytest --loc-root=src --loc-max-lines=200
License
Licensed under the Apache 2.0 License.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swarmauri_tests_loc_tersity-0.1.2.dev5.tar.gz.
File metadata
- Download URL: swarmauri_tests_loc_tersity-0.1.2.dev5.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc33ee20e9ceb263f19e99dceab5cd4471303e2bd255e46d919cec8d43fa0b9f
|
|
| MD5 |
e8d0f962c504ad77e6ea258b05ca77cb
|
|
| BLAKE2b-256 |
2dfa317e3ffb83a124c68fd731df752c182d72172a311db8d0779dfcf4d2eaa5
|
File details
Details for the file swarmauri_tests_loc_tersity-0.1.2.dev5-py3-none-any.whl.
File metadata
- Download URL: swarmauri_tests_loc_tersity-0.1.2.dev5-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3d308177ab7ea886068e16b826ed1e04eeea65d979c95cab0a318c628689ef8
|
|
| MD5 |
de8443ad59967f76e96eb0413f5b9951
|
|
| BLAKE2b-256 |
f50fb08f7ebc23d66ee01ffb98c5021463629e4b0314e1abede07cbfc8785157
|