Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of the PR
Fixes Doc building and adds pushing to PyPI
Checks
This is an itemised checklist for the QA process within UKHSA and represents the bare minimum a QA should be.
Full instructions on reviewing work can be found at Confluence on the ONS QA of code guidance page.
To the reviewer: Check the boxes once you have completed the checks below.
This is a basic form of Smoke Testing
* If the comments or readme do not have enough information, this check fails.
How to QA this PR
Before accepting the PR and merging to
main
ormaster
, please follow these steps on a terminal in your development instance:git status
check what branch you are on and if you have any uncommitted changes.git commit
if you would like to keep the changes you have made on your current branch.git stash
if you do not want to keep these changes, although you can recover these later.git checkout main
orgit checkout master
to go to the branch that will be merged to.git pull origin main
orgit pull origin master
fetches the most up to date git info on this branch.git branch -a
lists all the available branches.git checkout BRANCHNAME-FOR-PR
moves you into the branch to QA.git pull origin BRANCHNAME-FOR-PR
ensures you have the most recent changes for the PR.pre-commit
. This runs some automated checks to check the code is well formatted and does not contain data.