FIREWHEEL is an open source project and we welcome contributions from the community. New ideas and better solutions to existing code are always welcome! Here is how you can get started:
- Submit issue request. We encourage users to submit bug reports and feature requests via the issue tracker. If the idea is new/complex we recommend that the idea is discussed via the bug report before implementation. This first allows the FIREWHEEL community to arrive at consensus on the idea before time is spent implementing it.
- Fork FIREWHEEL to create your own copy of the project.
- Create a branch for the feature you want to work on.
Since the branch name will appear in the merge message, please use a sensible name such as 'fix-for-issue-123'.
Commit as you progress (
git add
andgit commit
). Use descriptive commit messages. Review the Deprecation policy to identify potential impact to users. - Lint your contribution. See Development Style for information on how to ensure correct formatting.
- Document changes.
If your change introduces any new features, please update (or create) appropriate documentation in
doc/source
. It's difficult to keep documentation up-to-date, so there is an emphasis on ensuring that revisions and especially new functionality is well documented. - Test your contribution. Ensure you have FIREWHEEL installed (with your changes) and then run the test suite (both unit and functional) locally (see Testing for details). Running the tests locally before submitting a pull request helps catch problems early and reduces the load on the continuous integration system. To ensure you have a properly-configured development environment for running the tests, see Build environment setup. If possible/necessary, new unit and/or functional tests should be added to ensure that the feature/bug is fully fixed.
- Submit your contribution as a new Pull Request to the master branch.
Please include an appropriate summary of the work and reference any issues which will be resolved.
For example, if the PR will address bug, also add "Fixes #123" where 123 is the issue number.
If your code is not ready to merge, but you want to get feedback, please consider using
WIP: <PR Title>
as the title of your pull request. That way we will all know that it's not yet ready to merge and that you may be interested in more fundamental comments about design. When you think the pull request is ready to merge, change the title (using the Edit button) to remove theWIP:
. - Wait for review. When a pull request is made, at least one reviewer (the other developers and interested community members) will assess the code and write inline and/or general comments on your Pull Request (PR) to help you improve its implementation, documentation, and style. Every single developer working on the project has their code reviewed, and we've come to see it as friendly conversation from which we all learn and the overall code quality benefits. Therefore, please don't let the review discourage you from contributing: its only aim is to improve the quality of project, not to criticize (we are, after all, very grateful for the time you're donating!). Once the code has been reviewed and all comments have been addressed, the reviewer will authorize the patch with a 'LGTM' (looks good to me) phrase. After authorization, any code maintainers may merge the pull request.
You will need to install all of FIREWHEEL's dependencies (see the :ref:`quickstart-guide` guide).
Clone your fork of the FIREWHEEL repository.
Once it is cloned, you should create up a Python development environment tailored for FIREWHEEL. We highly recommend using a virtual environment and provide instructions for
venv
:# Create a virtualenv named ``fwpy`` that lives in the directory of the same name python -m venv fwpy # Activate it source fwpy/bin/activate
Install your modified copy of FIREWHEEL into the virtual environment and finish configuring FIREWHEEL.
If you need to fully install/configure FIREWHEEL in development mode, you can use the
install.sh
script with the-d
flag to install development dependencies.# If you would like to change any default # configuration options in ``provision_env.sh`` # please change those first. ./install.sh -d
If you just need to install FIREWHEEL's development dependencies you can use:
python -m pip install firewheel[dev]
FIREWHEEL will now be install/configured using your version of the code.
Due to the complexity of FIREWHEEL, it is important to ensure that code is readable and maintainable. As such, we have certain guidelines that should be followed:
FIREWHEEL should always be all caps. This helps distinguish it from the CLI invocation.
FIREWHEEL components Control, VM Resource Manager, and Lib should always be title case and italicized.
When referring to a FIREWHEEL CLI Helper, the term "Helper" should be capitalized.
All code must pass our tox linting process. We use numerous tools to ensure high-quality code including ruff, flake8, and several others. You can run our linting suite by installing FIREWHEEL with development mode (see Build environment setup) Then you can run tox:
tox -e lint,lint-docs
If your test fails on formatting, you can run:
tox -e format
All new code should have tests. Most new code will require unit tests. Some features, e.g. those impacting in-experiment features, may also require functional tests.
All code should be documented. We use Google Style docstrings and you can review an example here.
We use reStructuredText and Sphinx to build documentation.
Documentation in RST files should be sentence/phrase new-line separated. That is, each line in the RST file should be a single phrase or sentence. Please see the raw version of this file as an example.
All changes are reviewed. Ask on the mailing list (firewheel [at] sandia [dot] gov) if you get no response to your pull request.
FIREWHEEL has a robust test suite that hopefully ensures correct execution. There are unit tests, which validates that various classes/methods/functions execute as designed, and functional tests which validate that experiments are launched as expected. The test suite has to pass before a pull request can be merged, and tests should be added to cover any modifications to the code base.
While most existing unit test cases are written using unittest, users are welcome to write new tests in either unittest or with the pytest testing framework. Using pytest may require some minor modifications to the current test suite.
All tests should be located in the appropriate folder under firewheel/src/tests
.
Our tests can be executed either via tox or using our FIREWHEEL test helpers.
firewheel test unit firewheel test e2e
Tests for a module should ideally cover all code in that module, i.e., statement coverage should be at 100%.
To measure the test coverage, install FIREWHEEL with development dependencies and then run:
tox -e py39
This will generate a coverage report and also exit if the tests fail.
If the behavior of the library has to be changed, a deprecation cycle must be followed to warn users.
A deprecation cycle is not necessary when:
- adding a new function, or
- adding a new keyword argument to the end of a function signature, or
- fixing buggy behavior
A deprecation cycle is necessary for any breaking API change, meaning a change where the function, invoked with the same arguments, would return a different result after the change.
Note
For FIREWHEEL, we consider our API as any function, class, method which are commonly and directly used by model components.
This includes:
- changing the order of arguments or keyword arguments, or
- adding arguments or keyword arguments to a function, or
- changing the name of a function, class, method, etc., or
- moving a function, class, etc. to a different module, or
- changing the default value of a function's arguments.
Usually, our policy is to put in place a deprecation cycle over two releases.
Note that the 2-release deprecation cycle is not a strict rule and in some cases, the developers can agree on a different procedure upon justification (like when we can't detect the change, or it involves moving or deleting an entire function for example).
The FIREWHEEL community has adopted a Code Of Conduct to ensure that we have an open, welcoming, diverse, inclusive, and healthy community. Please review :ref:`CODE_OF_CONDUCT <conduct>` for more information.
If you are submitting a patch to the existing codebase, the code will be licensed under the same license as FIREWHEEL. Please review :ref:`LICENSE <license>` for more information.