Just a super small repo to test CI with circleci
If required, install pipenv on your system
pip3 install pipenv
Activate the virtual environment
. $(pipenv --venv)/bin/activate
Donwload required packages from pypi
pipenv install
Run module pytest with coverage flag on the testable code in the current directory IMPORTANT to run pytest as a module to get the import statements correct!
python -m pytest --cov .
Run a PEP8 test on your app code
flake8 app/*.py --statistics
https://realpython.com/advanced-git-for-pythonistas/
https://help.github.com/en/categories/collaborating-with-issues-and-pull-requests
Would be useful to create a deployable artifact (finished, packaged product). Haven't found a good resource for this just yet.