An opinionated testing suite organizer and linter for pytest.
SuiteAs will automatically generate a skeletonized unit test suite based on the structure of your project. Then, going forward, it will enforce matching names and folder structure between your testing suite and your project using linter rules.
For now, only linting is supported; automatic test suite generation will be added later.
Sweet As
INFORMAL • NEW ZEALAND
very satisfactory; excellent.
The recommended way to use SuiteAs is using the pre-commit framework. Add the following to your .pre-commit-config.yaml file:
- repo: https://github.com/nathanjmcdougall/suiteas
rev: v0.3.3
hooks:
- id: suiteasYou can also install and run SuiteAs as a standalone package:
pip install suiteas
python -m suiteas .SuiteAs will try to automatically determine your project directory structure and
configuration, but you can manually configure SuiteAs in a pyproject.toml file.
For example, if your project looks like this:
.
└── myrepo/
├── src/
│ ├── mypkg/
│ └── otherpkg/
├── tests/
│ ├── unit/
│ │ ├── mypkg/
│ │ └── otherpkg/
│ └── endtoend/
└── pyproject.toml
Then you would add this section to pyproject.toml:
[tool.suiteas]
pkg_names = ["mypkg", "otherpkg"]
src_rel_path = "src"
tests_rel_path = "tests"
unittest_dir_name = "unit"
ignore = ["SUI002"]The final line will globally disable the linting of the SUI002 rule.
SuiteAs will enforce the following rules:
| Rule | Description |
|---|---|
| SUI001 | Function or class is missing a corresponding test function |
| SUI002 | Pytest test class is empty |
| SUI003 | Pytest file does not import the function being tested |
This project uses rye to manage dependencies, virtual environments, and the python installation. Run rye sync from the project root to install the development environment.
This project uses pre-commit to manage hooks. After installing the development environment, run pre-commit install.
This project requires signed commits. Please see this guide from the VS Code project for instructions on how to configure this.
This project uses D2Lang to develop and maintain design diagrams.
This project uses towncrier to manage the changelog. Each PR should have at least one associated GitHub issue. Before the PR is merged, a changelog entry should be created for any issues which are resolved by the PR. The changelog entry files are created in the doc/changelog_entries directory, with the filename following the convention <github id>.<type>.rst where <github id> is the GitHub issue ID number, and <type> is one of the types documented in the pyproject.toml file in the [tool.towncrier.type] sections.