Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 585 Bytes

File metadata and controls

33 lines (21 loc) · 585 Bytes

Local development

This project uses Conda to manage its dependencies. Run the following to setup your local environment:

conda env update --file environment.yml -n sagemaker-image-builder

Tests

Unit Tests

Run the following to invoke all unit tests:

pytest test/

Code Style

Install pre-commit to run code style checks before each commit:

pre-commit install

To run formatters for all existing files, use:

pre-commit run --all-files

pre-commit checks can be disabled for a particular commit with git commit -n.