Developer Guide¶
This developer guide aims to get you started with developing LNT. At the moment, a lot of detailed info is missing, but hopefully this will get you started.
Installation¶
For development purposes, we recommend checking out the sources, setting up a virtual environment and installing the development dependencies:
cd path/to/lnt/sources
python3 -m venv .venv
source .venv/bin/activate
pip install ".[dev]"
This will install the current version of the package, along with the dependencies
required for development (lit, filecheck, etc). Note that curl and
jq are also required for running the tests.
Running LNT’s Regression Tests¶
LNT has a growing body of regression tests that makes it easier to improve LNT without accidentally breaking existing functionality. Just like when developing most other LLVM sub-projects, you should consider adding regression tests for every feature you add or every bug you fix. The regression tests must pass at all times, therefore you should run the regression tests as part of your development work-flow, just like you do when developing on other LLVM sub-projects.
We use tox as the high-level driver to run tests. To run them locally,
simply run the tox command from the root of the repository. We also have
various unit tests which execute using LLVM’s lit utility. You can run
individual unit tests with lit directly (assuming you have installed
the development dependencies in your virtual environment):
lit -sv tests/lnttool/submit.shtest
For simple changes, adding a regression test and making sure all regression tests pass, is often a good enough testing approach. For some changes, the existing regression tests aren’t good enough at the moment, and manual testing will be needed.
Optional Tests¶
Some tests require additional tools to be installed and are not enabled by
default. You can enable them by passing additional flags to lit:
-Dtidylib=1Check generated html pages for errors using
tidy-html5. This requirespytidylibandtidy-html5to be installed.-Dcheck-coverage=1Enable
coverage.pyreporting, assuming the coverage module has been installed andsitecustomize.pyin the virtualenv has been modified appropriately.
Example:
lit -sv -Dtidylib=1 ./tests
Publishing a new version of LNT¶
We publish a new version of the LNT package on a regular basis. This is done automatically via a Github Action whenever a commit is tagged. However, publishing can also be done manually. To do so, make sure you install the development dependencies, and then run the following commands from the virtual environment:
rm -rf dist
python -m build
python -m twine upload --repository testpypi dist/*
This requires setting up the right API token, see the official documentation
for details. You can replace --repository testpypi with --repository pypi once you are actually ready
to publish the package.