NOMAD parser example
This nomad plugin was generated with Cookiecutter along with @nomad's cookiecutter-nomad-plugin template.
If you want to develop locally this plugin, clone the project and in the plugin folder, create a virtual environment (you can use Python 3.10, 3.11 or 3.12):
git clone https://github.com/ZBT-Tools/nomad_plugin_parser_example.git
cd nomad_plugin_parser_example
python3.11 -m venv .pyenv
. .pyenv/bin/activateMake sure to have pip upgraded:
pip install --upgrade pipWe recommend installing uv for fast pip installation of the packages:
pip install uvInstall the nomad-lab package:
uv pip install -e '.[dev]'You can run locally the tests:
python -m pytest -sv testswhere the -s and -v options toggle the output verbosity.
Our CI/CD pipeline produces a more comprehensive test report using the pytest-cov package. You can generate a local coverage report:
uv pip install pytest-cov
python -m pytest --cov=src testsWe use Ruff for linting and formatting the code. Ruff auto-formatting is also a part of the GitHub workflow actions. You can run locally:
ruff check .
ruff format . --checkFor interactive debugging of the tests, use pytest with the --pdb flag. We recommend using an IDE for debugging, e.g., VSCode. If that is the case, add the following snippet to your .vscode/launch.json:
{
"configurations": [
{
"name": "<descriptive tag>",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/.pyenv/bin/pytest",
"justMyCode": true,
"env": {
"_PYTEST_RAISE": "1"
},
"args": [
"-sv",
"--pdb",
"<path-to-plugin-tests>",
]
}
]
}where <path-to-plugin-tests> must be changed to the local path to the test module to be debugged.
The settings configuration file .vscode/settings.json automatically applies the linting and formatting upon saving the modified file.
To view the documentation locally, install the related packages using:
uv pip install -r requirements_docs.txtRun the documentation server:
mkdocs serveCurrently, NOMAD has two distinct flavors that are relevant depending on your role as an user:
- A NOMAD Oasis: any user with a NOMAD Oasis instance.
- Local NOMAD installation and the source code of NOMAD: internal developers.
Read the NOMAD plugin documentation for all details on how to deploy the plugin on your NOMAD instance.
We now recommend using the dedicated nomad-distro-dev repository to simplify the process. Please refer to that repository for detailed instructions.
We use cruft to update the project based on template changes. To run the check for updates locally, run cruft update in the root of the project. More details see the instructions on cruft website.
| Name | |
|---|---|
| Lukas Feierabend | l.feierabend@zbt.de |