Excellent!
Please first look at the existing GitHub issues to see if it has already been reported. But if you don't see your bug, please file a new GitHub issue, and we will look at it as soon as we can.
The more detail you can add, the quicker we will be able to fix the bug.
Even better! Thank you!
To use the same dev environment as us, you'll want to run these commands:
pip install .[dev]
pre-commit install
This will install the pre-commit hooks for the repo (which automatically enforce styling for you).
- First, you'll want to install the Microsoft Anonymizer tool. Here's an example install command for a Debian-based Linux system, once you've checked out the repo:
sudo apt-get install dotnet6
dotnet publish \
--runtime=linux-x64 \
--configuration=Release \
-p:PublishSingleFile=true \
--output=$HOME/.local/bin \
mstool/FHIR/src/Microsoft.Health.Fhir.Anonymizer.R4.CommandLineTool
- Then just run
pytest
. All dependencies should have been installed by thepip install .[dev]
above.
Open a new GitHub PR and one of the maintainers will notice it and comment.
Please add as much detail as you can about the problem you are solving and ideally even link to the related existing GitHub issue.
All code changes (even changes made by the main project developers) go through several automated CI steps and a manual code review.
Here's what GitHub will automatically run:
- unit tests (run
pytest
locally to confirm your tests pass) - lint tests (run
pylint cumulus_etl tests
to confirm your code passes) - security static analysis (via
bandit
)
A project developer will also review your code manually. Every PR needs one review approval to land.
A reviewer will be looking for things like:
- suitability (not every change makes sense for the project scope or direction)
- maintainability
- general quality
Once approved, you can merge your PR yourself as long as the other GitHub tests pass. Congratulations, and thank you!