Phalanx pre-commit and testing#

If you are using or making changes to Phalanx, you should start by setting up a local development environment.

Once that is set up, pre-commit will run for every commit, and you will be able to use tox to run tests. This document describes how to use pre-commit and the Phalanx tests.

What to expect when developing in Phalanx with pre-commit#

Once pre-commit is installed, your Git commits in Phalanx are checked by the linters. If a linter “fails” the commit, you’ll need to make the necessary changes and re-try the Git commit.

Many linters make the required changes when “failing.” For example, helm-docs updates the README files for Helm charts and black reformats Python files. For these cases, you only need to git add the updated files for git commit to be successful.

Other linters, such as Ruff or check-jsonschema, may point out issues that they do not fix. You’ll need to manually resolve those issues before re-adding and committing.

Linting all files#

Pre-commit normally runs only on changed files. To check all files (similar to how we run pre-commit in GitHub Actions):

tox run -e lint

By-passing pre-commit#

In an emergency situation, it’s possible to by-pass pre-commit when making git commits:

git commit --no-verify

Keep in mind that the pre-commit linters always run on GitHub Actions. Merging to Phalanx’s default branch while the linters “fail” the repo may only be done by a repository administrator.

Running tests#

After making changes to the Phalanx configuration, you may want to run the Phalanx test suite. This mostly tests the Python code, but it also contains some tests for the consistency of the Phalanx configuration. To do this, run:

tox run -e py

If you make changes that affect the Phalanx documentation, such as adding new applications (see Add a new application to Phalanx) or adding new environments (see Installing a Phalanx environment), you may want to build the documentation locally to see if there are any errors. Any such errors must be resolved before changes can be merged. To do this, run:

tox run -e docs

This also allows you to preview the new documentation, which will be generated in docs/_build/html.