flask/CONTRIBUTING.rst

228 lines
6.5 KiB
ReStructuredText
Raw Permalink Normal View History

2015-03-31 12:44:47 +02:00
How to contribute to Flask
==========================
Thank you for considering contributing to Flask!
2015-03-31 12:44:47 +02:00
2020-05-23 13:48:24 -07:00
2015-03-31 12:44:47 +02:00
Support questions
-----------------
2021-02-08 18:26:37 -08:00
Please don't use the issue tracker for this. The issue tracker is a tool
to address bugs and feature requests in Flask itself. Use one of the
following resources for questions about using Flask or issues with your
own code:
2021-06-14 14:20:04 +08:00
- The ``#questions`` channel on our Discord chat:
2020-07-21 12:06:06 +08:00
https://discord.gg/pallets
2020-05-23 13:48:24 -07:00
- Ask on `Stack Overflow`_. Search with Google first using:
2021-02-08 18:26:37 -08:00
``site:stackoverflow.com flask {search term, exception message, etc.}``
2022-05-10 09:27:54 -07:00
- Ask on our `GitHub Discussions`_ for long term discussion or larger
questions.
2015-03-31 12:44:47 +02:00
2021-02-08 18:26:37 -08:00
.. _Stack Overflow: https://stackoverflow.com/questions/tagged/flask?tab=Frequent
2021-06-14 14:20:04 +08:00
.. _GitHub Discussions: https://github.com/pallets/flask/discussions
2015-03-31 12:44:47 +02:00
2020-05-23 13:48:24 -07:00
2015-03-31 12:44:47 +02:00
Reporting issues
----------------
2015-03-31 12:44:47 +02:00
2020-06-11 19:19:35 -07:00
Include the following information in your post:
2020-05-23 13:48:24 -07:00
- Describe what you expected to happen.
- If possible, include a `minimal reproducible example`_ to help us
identify the issue. This also helps check that the issue is not with
your own code.
- Describe what actually happened. Include the full traceback if there
was an exception.
2021-02-08 18:26:37 -08:00
- List your Python and Flask versions. If possible, check if this
issue is already fixed in the latest releases or the latest code in
the repository.
2015-03-31 12:44:47 +02:00
2019-06-23 15:37:51 -07:00
.. _minimal reproducible example: https://stackoverflow.com/help/minimal-reproducible-example
2015-03-31 12:44:47 +02:00
2020-05-23 13:48:24 -07:00
2015-03-31 12:44:47 +02:00
Submitting patches
------------------
2015-03-31 12:44:47 +02:00
2020-06-11 19:19:35 -07:00
If there is not an open issue for what you want to submit, prefer
opening one for discussion before working on a PR. You can work on any
issue that doesn't have an open PR linked to it or a maintainer assigned
to it. These show up in the sidebar. No need to ask if you can work on
an issue that interests you.
Include the following in your patch:
- Use `Black`_ to format your code. This and other tools will run
automatically if you install `pre-commit`_ using the instructions
below.
- Include tests if your patch adds or changes code. Make sure the test
fails without your patch.
- Update any relevant docs pages and docstrings. Docs pages and
docstrings should be wrapped at 72 characters.
- Add an entry in ``CHANGES.rst``. Use the same style as other
entries. Also include ``.. versionchanged::`` inline changelogs in
relevant docstrings.
.. _Black: https://black.readthedocs.io
.. _pre-commit: https://pre-commit.com
2020-05-23 13:48:24 -07:00
2015-03-31 12:44:47 +02:00
2017-05-23 11:18:48 -07:00
First time setup
~~~~~~~~~~~~~~~~
2017-05-23 11:18:48 -07:00
2020-05-23 13:48:24 -07:00
- Download and install the `latest version of git`_.
- Configure git with your `username`_ and `email`_.
.. code-block:: text
$ git config --global user.name 'your name'
$ git config --global user.email 'your email'
- Make sure you have a `GitHub account`_.
- Fork Flask to your GitHub account by clicking the `Fork`_ button.
2020-06-11 19:19:35 -07:00
- `Clone`_ the main repository locally.
2020-05-23 13:48:24 -07:00
.. code-block:: text
2020-06-11 19:19:35 -07:00
$ git clone https://github.com/pallets/flask
2020-05-23 13:48:24 -07:00
$ cd flask
2020-06-11 19:19:35 -07:00
- Add your fork as a remote to push your work to. Replace
``{username}`` with your username. This names the remote "fork", the
default Pallets remote is "origin".
2020-05-23 13:48:24 -07:00
.. code-block:: text
2021-06-14 14:20:04 +08:00
$ git remote add fork https://github.com/{username}/flask
2020-05-23 13:48:24 -07:00
- Create a virtualenv.
2022-05-02 11:58:24 -06:00
- Linux/macOS
2020-05-23 13:48:24 -07:00
2022-05-02 11:58:24 -06:00
.. code-block:: text
2020-05-23 13:48:24 -07:00
2022-05-02 11:58:24 -06:00
$ python3 -m venv env
$ . env/bin/activate
2022-05-02 11:58:24 -06:00
- Windows
2022-05-02 11:58:24 -06:00
.. code-block:: text
2020-05-23 13:48:24 -07:00
2022-05-02 11:58:24 -06:00
> py -3 -m venv env
> env\Scripts\activate
2020-05-23 13:48:24 -07:00
- Upgrade pip and setuptools.
.. code-block:: text
$ python -m pip install --upgrade pip setuptools
2021-02-08 18:26:37 -08:00
- Install the development dependencies, then install Flask in editable
mode.
2020-05-23 13:48:24 -07:00
.. code-block:: text
2021-02-08 18:26:37 -08:00
$ pip install -r requirements/dev.txt && pip install -e .
2020-05-23 13:48:24 -07:00
- Install the pre-commit hooks.
2017-05-23 11:18:48 -07:00
2020-05-23 13:48:24 -07:00
.. code-block:: text
2020-05-23 13:48:24 -07:00
$ pre-commit install
2017-05-23 11:18:48 -07:00
.. _latest version of git: https://git-scm.com/downloads
2021-02-08 18:26:37 -08:00
.. _username: https://docs.github.com/en/github/using-git/setting-your-username-in-git
.. _email: https://docs.github.com/en/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address
2020-06-11 19:19:35 -07:00
.. _GitHub account: https://github.com/join
2021-05-13 03:54:41 -04:00
.. _Fork: https://github.com/pallets/flask/fork
2021-02-08 18:26:37 -08:00
.. _Clone: https://docs.github.com/en/github/getting-started-with-github/fork-a-repo#step-2-create-a-local-clone-of-your-fork
2017-05-23 11:18:48 -07:00
2020-05-23 13:48:24 -07:00
2017-05-23 11:18:48 -07:00
Start coding
~~~~~~~~~~~~
2017-05-23 11:18:48 -07:00
- Create a branch to identify the issue you would like to work on. If
you're submitting a bug or documentation fix, branch off of the
2020-05-23 13:48:24 -07:00
latest ".x" branch.
.. code-block:: text
2020-06-11 19:19:35 -07:00
$ git fetch origin
2021-05-11 15:18:41 -07:00
$ git checkout -b your-branch-name origin/2.0.x
If you're submitting a feature addition or change, branch off of the
2021-05-11 15:18:41 -07:00
"main" branch.
2020-05-23 13:48:24 -07:00
.. code-block:: text
2020-06-11 19:19:35 -07:00
$ git fetch origin
2021-05-11 15:18:41 -07:00
$ git checkout -b your-branch-name origin/main
2020-05-23 13:48:24 -07:00
- Using your favorite editor, make your changes,
`committing as you go`_.
- Include tests that cover any code changes you make. Make sure the
2020-06-11 19:19:35 -07:00
test fails without your patch. Run the tests as described below.
- Push your commits to your fork on GitHub and
`create a pull request`_. Link to the issue being addressed with
``fixes #123`` in the pull request.
2020-05-23 13:48:24 -07:00
.. code-block:: text
2020-06-11 19:19:35 -07:00
$ git push --set-upstream fork your-branch-name
2015-03-31 12:44:47 +02:00
.. _committing as you go: https://dont-be-afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes
2021-02-08 18:26:37 -08:00
.. _create a pull request: https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request
2017-05-23 11:18:48 -07:00
2020-05-23 13:48:24 -07:00
Running the tests
~~~~~~~~~~~~~~~~~
2015-03-31 12:44:47 +02:00
2020-05-23 13:48:24 -07:00
Run the basic test suite with pytest.
.. code-block:: text
2015-03-31 12:44:47 +02:00
2020-05-23 13:48:24 -07:00
$ pytest
2015-03-31 12:44:47 +02:00
2020-06-11 19:19:35 -07:00
This runs the tests for the current environment, which is usually
sufficient. CI will run the full suite when you submit your pull
request. You can run the full test suite with tox if you don't want to
wait.
2020-05-23 13:48:24 -07:00
.. code-block:: text
$ tox
Running test coverage
~~~~~~~~~~~~~~~~~~~~~
Generating a report of lines that do not have test coverage can indicate
2020-05-23 13:48:24 -07:00
where to start contributing. Run ``pytest`` using ``coverage`` and
2020-06-11 19:19:35 -07:00
generate a report.
2020-05-23 13:48:24 -07:00
.. code-block:: text
2020-06-11 19:19:35 -07:00
$ pip install coverage
2020-05-23 13:48:24 -07:00
$ coverage run -m pytest
2020-06-11 19:19:35 -07:00
$ coverage html
2020-06-11 19:19:35 -07:00
Open ``htmlcov/index.html`` in your browser to explore the report.
2020-06-11 19:19:35 -07:00
Read more about `coverage <https://coverage.readthedocs.io>`__.
Building the docs
~~~~~~~~~~~~~~~~~
2020-05-23 13:48:24 -07:00
Build the docs in the ``docs`` directory using Sphinx.
.. code-block:: text
2020-05-23 13:48:24 -07:00
$ cd docs
$ make html
Open ``_build/html/index.html`` in your browser to view the docs.
2020-06-11 19:19:35 -07:00
Read more about `Sphinx <https://www.sphinx-doc.org/en/stable/>`__.