Skip to main content

Framework that can run checks on repos

Project description

repo-review

Actions Status Code style: black

PyPI version PyPI platforms

This is a framework for building checks designed to check to see if a repository follows guidelines. By itself, it does nothing - it requires at least one plugin to be installed..

With one or more plugins, it will produce a list of results - green checkmarks mean this rule is followed, red x’s mean the rule is not. A yellow warning sign means that the check was skipped because a previous required check failed.

sp-repo-review provides checks based on the Scientific-Python Development Guide at scientific-python/cookie.

Running repo-review

Repo-review supports running multiple ways:

  • From the command line on a local folder
  • From the command line on a remote repository on GitHub (gh:org/repo@branch)
  • From WebAssembly in Pyodide (example in docs/index.html)

If the root of a package is not the repository root, pass --package-dir a/b/c.

Configuration

Repo-review supports configuration via pyproject.toml:

[tool.repo-review]
select = ["A", "B", "C100"]
ignore = ["A100"]

If --select or --ignore are given on the command line, they will override the pyproject.toml config.

Development of repo-review and plugins

This repository is intended to be fun and easy to develop - it requires and uses Python 3.10, and uses a lot of the new features in 3.9 and 3.10. It's maybe not entirely conventional, but it enables very simple plugin development. It works locally, remotely, and in WebAssembly (using Pyodide).

There are a few key designs that are very useful and make this possible. First, all paths are handled as Traversables. This allows a simple Traversable implementation based on open_url to provide a web interface for use in the webapp. It also would allow zipfile.Path to work just as well, too - no need to extract.

Checks can request fixtures (like pytest) as arguments. Check files can add new fixtures as needed. Fixtures are are specified with entry points, and take any other fixture as arguments as well - the package fixture represents the root of the package you are checking, and is the basis for all other fixtures. Checks are specified via an entrypoint that returns a dict of checks; this also can accept fixtures, allowing dynamic check listings.

Check files do not depend on the main library, and can be extended (similar to Flake8). You register new check files via entry-points - so extending this is with custom checks or custom fixtures is easy and trivial. There's no need to subclass or do anything with the base library - no dependency required.

Checks are as simple as possible so they are easy to write. A check is a class with the name (1-2 letters + number) and a docstring (the check message). It should define a set of requires with any checks it depends on (by name), and have a check classmethod. The docstring of this method is the failure message, and supports substitution. Arguments to this method are fixtures, and package is the built-in one providing the package directory as a Traversable. Any other fixtures are available by name. A new fixture is given the package Traversable, and can produce anything; fixtures are topologically sorted, pre-computed and cached.

The runner will topologically sort the checks, and checks that do not run will get a None result and the check method will not run. The front-end (Rich powered CLI or Pyodide webapp) will render the markdown-formatted check docstring only if the result is False.

Links

This project inspired Try-PyHF, an interface for a High Energy Physics package in Scikit-HEP.

This project inspired abSENSE, an web interface to abSENSE.

This was developed for Scikit-HEP before moving to Scientific-Python.

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

repo_review-0.7.0b4.tar.gz (25.1 kB view details)

Uploaded Source

Built Distribution

repo_review-0.7.0b4-py3-none-any.whl (14.9 kB view details)

Uploaded Python 3

File details

Details for the file repo_review-0.7.0b4.tar.gz.

File metadata

  • Download URL: repo_review-0.7.0b4.tar.gz
  • Upload date:
  • Size: 25.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for repo_review-0.7.0b4.tar.gz
Algorithm Hash digest
SHA256 3432c807644874d92c98b50c778e430ad1c6c4e94625b2fee52cf8dda427e1d7
MD5 32182eb0e6f7b8a604a64ffa196da075
BLAKE2b-256 16aa2472f0072675b9b97bd56c9f2c5cb0c71c1cc67616430d095e7c1db27a64

See more details on using hashes here.

File details

Details for the file repo_review-0.7.0b4-py3-none-any.whl.

File metadata

File hashes

Hashes for repo_review-0.7.0b4-py3-none-any.whl
Algorithm Hash digest
SHA256 fca845cdcd6e078dbb5f63f684baf7b88452473329b1ce7eac31543a0e68de76
MD5 10fa8cb107b52b19ce949f076d018f0e
BLAKE2b-256 c0ce12f421f75c54b82896f44a0d976ccf19927042d228c62d5e58695321c787

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