git clone https://github.com/[YOUR GITHUB ACCOUNT]/pycontw-postevent-report-generator.gitgit remote add upstream "https://github.com/pycontw/pycontw-postevent-report-generator"You can pull the latest code in master branch through git pull upstream master afterward.
git checkout -b [YOUR FEATURE]python -m pip install pipx
python -m pipx install pipenv invoke
python -m pipx ensurepathinv env.init-devIf you want to develop it, please run:
inv build.developMake sure all test cases pass.
inv testCheck the test coverage and see where you can add test cases.
inv test.covFormat your code through black and isort.
inv style.reformatMake sure your coding style passes all enforced linters.
inv style[Optional] Check your coding style through pylint. Note that you do not have to fix all the issues warned by pylint.
inv style.pylintEnsure the packages installed are secure
inv secure[Optional] Check whether there is common security issue in the code. Note that you do not have to fix all the issues warned by bandit
inv secure.banditinv build.test-cli