main
- Reserved for current releasedevelop
- Ready to release code, bases for new PRs<feature>
- Individual feature branches, should be PR'd todevelop
.
This leverages Python3.6 or later. All features will be tested against 3.6 - 3.9 versions of Python.
This project utilizes Semver versioning. As part of PRs the maintainers should leverage Poetry versioning to support the increase in version numbers. Reference Poetry Version Docs for more information on automatically adjusting the version.
These steps are also required for using the examples as provided in the repository for demonstration purposes.
This repository uses poetry for dependency management and invoke for task execution. To see what invoke commands are available, issue the command invoke --list
.
Follow these steps to set up your local development environment:
# Double check your version
$ python --version
Python 3.7.7
# Activate the Poetry environment, which will auto create the virtual environment related to the project
$ poetry shell
# Install project dependencies as well as development dependencies
$ poetry install
When you install dependencies via Poetry you will get invoke as part of the process.
Docker images are available to provide a consistent development environment from one machine to another. The best practice recommendation is to execute two steps to test:
- Build Docker container image (
invoke build
) - Execute test environment (
invoke tests
)- You can execute individual tests as well by looking at the tests with the command
invoke --list
- You can execute individual tests as well by looking at the tests with the command
Invoke tasks have a task to help build the containers. Executing the task with invoke build
will build the Docker image for testing.
The Invoke task to execute the tests are then invoke tests
. This will execute all of the linting and pytest functions on the code.
All tests should be located within the tests\
directory with tests\unit
for the unit tests. Integration tests should be in the tests\integration
directory.
The following linting tasks are required:
- Bandit
- Basic security tests, should be run on Python3.6 or Python3.7
- Black code style
- Code formatting with version 20.8b1. There are some differences in the format between versions 19 and 20.
- Flake8
- Black vs Flake conflicts: When conflicts arise between Black and Flake8, Black should win and Flake8 should be configured as such
- Pydocstyle
- Pylint
- Yamllint