Skip to content

Continuous Integration¤

This guide explains how to install dependencies, run linting and formatting checks, execute tests, and build documentation as part of the continuous integration (CI) process.

Installation¤

After cloning the repository, in the root of the project, and assuming JAX is already installed, do the following: To install all development dependencies, use one or more of the following commands:

pip install .[test]  
pip install .[format-and-lint] 
pip install .[doc] 

To install everything required for development, you can install all extras at once:

pip install .[test,format-and-lint,doc]

Running Checks¤

The project uses a Makefile to streamline common CI tasks. You can run the following commands to check code quality and correctness:

1. Formatting and Linting¤

To check code formatting and linting rules, run:

make format-and-lint

This will: - Ensure code is properly formatted. - Verify that imports are correctly ordered. - Check for style violations and linting issues. - Enforce documentation conventions.

2. Running Tests¤

To execute all tests, use:

make test

This will: - Run all tests. - Execute tests in parallel for efficiency.

3. Running Benchmarks¤

To evaluate the performance of the code, benchmarks can be executed. There are different configurations for benchmarks.

To run the full benchmark suite, use:

make benchmarks-run
make benchmarks-plot-results

This will: - Execute benchmarking scripts to assess performance. - Plot the results so that the next documentation build displays the results.

Benchmarking parameters and configurations can be adjusted in the relevant benchmark scripts, located in the doc/benchmarks/ directory.

If the goal is not a full benchmark run, but simply a check whether the benchmark scripts execute correctly, use:

make benchmarks-run-dry-run
This is helpful to verify that API changes are reflected in the benchmark code.

4. Building Documentation¤

To generate the documentation, use:

make doc

This will: - Sync content in docs/* with the rest of the repo. - Process Jupyter notebooks and Markdown files. - Build the documentation site.

5. Cleaning Up¤

To remove auxiliary files generated during testing or documentation builds, run:

make clean

This removes unnecessary files (eg pytest or mypy caches) to keep the repository clean.

Pre-commit Hooks¤

To ensure code quality before committing, the project uses pre-commit hooks. These automatically format, lint, and check files before they are committed to the repository.

Setting Up Pre-commit¤

Install pre-commit and set up the hooks by running:

pip install pre-commit  # Included in `pip install -e .[format-and-lint]`
pre-commit install

Running Pre-commit Manually¤

To check all files, not just the staged ones, run:

pre-commit run --all-files

To check only the files staged for commit, run:

pre-commit run

This ensures that only properly formatted and linted code is committed.