Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 2.19 KB

File metadata and controls

39 lines (24 loc) · 2.19 KB

Contributing to Argoverse

Contributions to Argoverse are welcome! If you find a bug, please open an issue describing the problem with steps to reproduce. Better yet, if you figure out a fix, please open a pull request!

To open a pull request, here are some steps to get you started:

  • Fork the Argoverse repository and clone to your machine.

  • Create a branch for your changes.

    • $ git checkout -b <name of your branch>
  • Install pre-commit

  • Run pre-commit install --install-hooks to install the git hooks for this repo, so your changes get auto-formatted as you commit.

  • Validate that your changes do not break any existing unit tests.

    • Run all unit tests: $ pytest tests
  • Please provide documentation for any new code your pull request provides.

  • Push your branch to the remote when it is complete.

    • $ git push --set-upstream origin <name of your branch>
  • Open a pull request https://github.com/argoai/argoverse-api/pulls from your branch.

    • Hint: having unit tests that validate your changes with your pull request will help to land your changes faster.

Helpful documentation

Making a contribution to Argoverse will require some basic knowledge of Git and Github. If these tools are new to you, here is some documentation that might be helpful.

License

By contributing to this project you are acknowledging and agreeing that all contributions made by you are submitted under the terms of the MIT license. See our LICENSE for details.