How to contribute#
There are a few guidelines that we need contributors to follow so that we are able to process requests as efficiently as possible. If you have any questions or concerns please feel free to contact us at opensource@nike.com.
Getting Started#
- Review our Code of Conduct
- Make sure you have a GitHub account
- Submit a ticket for your issue, assuming one does not already exist.
- Clearly describe the issue including steps to reproduce when it is a bug.
- Make sure you fill in the earliest version that you know has the issue.
- Fork the repository on GitHub
Making Changes#
- Create a feature branch off of
main
before you start your work.- Please avoid working directly on the
main
branch.
- Please avoid working directly on the
- Setup the required package manager hatch
- Setup the dev environment see below
- Make commits of logical units.
- You may be asked to squash unnecessary commits down to logical units.
- Check for unnecessary whitespace with
git diff --check
before committing. - Write meaningful, descriptive commit messages.
- Please follow existing code conventions when working on a file
- Make sure to check the standards on the code, see below
- Make sure to test the code before you push changes see below
๐ค Submitting Changes#
- Push your changes to a topic branch in your fork of the repository.
- Submit a pull request to the repository in the Nike-Inc organization.
- After feedback has been given we expect responses within two weeks. After two weeks we may close the pull request if it isn't showing any activity.
- Bug fixes or features that lack appropriate tests may not be considered for merge.
- Changes that lower test coverage may not be considered for merge.
๐จ Make commands#
We use make
for managing different steps of setup and maintenance in the project. You can install make by following
the instructions here
For a full list of available make commands, you can run:
๐ฆ Package manager#
We use hatch
as our package manager.
Note: Please DO NOT use pip or conda to install the dependencies. Instead, use hatch.
To install hatch, run the following command:
or,
This will install hatch using brew if you are on a Mac.
If you are on a different OS, you can follow the instructions here
๐ Dev Environment Setup#
To ensure our standards, make sure to install the required packages.
This will install all the required packages for development in the project under the .venv
directory.
Use this virtual environment to run the code and tests during local development.
๐งน Linting and Standards#
We use ruff
, pylint
, isort
, black
and mypy
to maintain standards in the codebase.
Run the following two commands to check the codebase for any issues:
This will run all the checks including pylint and mypy. This will format the codebase using black, isort, and ruff.Make sure that the linters and formatters do not report any errors or warnings before submitting a pull request.
๐งช Testing#
We use pytest
to test our code.
You can run the tests by running one of the following commands:
make cov # to run the tests and check the coverage
make all-tests # to run all the tests
make spark-tests # to run the spark tests
make non-spark-tests # to run the non-spark tests
Make sure that all tests pass and that you have adequate coverage before submitting a pull request.