Skip to content

Latest commit

 

History

History
87 lines (57 loc) · 1.9 KB

CONTRIBUTING.md

File metadata and controls

87 lines (57 loc) · 1.9 KB

Contributing

Thanks for helping improve Django GraphQL Auth!

All kinds of contributions are welcome:

  • Bug fixes
  • Documentation improvements
  • New features
  • Refactoring
  • Fix some typo
  • Write more tests

Getting started

If you have a specific contribution in mind, be sure to check the issues and projects in progress - someone could already be working on something similar and you can help out.

Project setup

After cloning this repo, ensure dependencies are installed by running:

make dev-setup

and

pip install tox

Running tests

After developing, you can run tests with:

# python=3.7 and django=3.0
make test

Single file test shortcut:

# run only tests in tests/test_social_auth.py
make test-file f=social_auth

For live testing on a django project, you can use the testproject. Create a different virtualenv, install the dependencies again and run:

cd testproject
make install-local v=<CURRENT VERSION IN gql_social_auth.__init__>

Opening Pull Requests

Please fork the project and open a pull request against the main branch.

This will trigger a series of tests and lint checks.

We advise that you format and run lint locally before doing this to save time:

make format
make lint

Documentation

The documentation is generated using the excellent MkDocs with material theme.

The documentation dependencies are installed by running:

pip install -r docs/requirements.txt

Then to produce a HTML version of the documentation, for live editing:

make serve

It will run the docs/pre_build.py script before building the docs.