flask/CONTRIBUTING.rst

239 lines
7.8 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
First time setup using GitHub Codespaces
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2017-05-23 11:18:48 -07:00
`GitHub Codespaces`_ creates a development environment that is already set up for the
project. By default it opens in Visual Studio Code for the Web, but this can
be changed in your GitHub profile settings to use Visual Studio Code or JetBrains
PyCharm on your local computer.
- Make sure you have a `GitHub account`_.
- From the project's repository page, click the green "Code" button and then "Create
codespace on main".
- The codespace will be set up, then Visual Studio Code will open. However, you'll
need to wait a bit longer for the Python extension to be installed. You'll know it's
ready when the terminal at the bottom shows that the virtualenv was activated.
- Check out a branch and `start coding`_.
.. _GitHub Codespaces: https://docs.github.com/en/codespaces
.. _devcontainer: https://docs.github.com/en/codespaces/setting-up-your-project-for-codespaces/adding-a-dev-container-configuration/introduction-to-dev-containers
First time setup in your local environment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Make sure you have a `GitHub account`_.
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'
- Fork Flask to your GitHub account by clicking the `Fork`_ button.
- `Clone`_ your fork locally, replacing ``your-username`` in the command below with
your actual username.
2020-05-23 13:48:24 -07:00
.. code-block:: text
$ git clone https://github.com/your-username/flask
2020-05-23 13:48:24 -07:00
$ cd flask
- Create a virtualenv. Use the latest version of Python.
2020-05-23 13:48:24 -07:00
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
$ python3 -m venv .venv
$ . .venv/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
> py -3 -m venv .venv
2023-04-15 07:39:35 -07:00
> .venv\Scripts\activate
2020-05-23 13:48:24 -07:00
- Install the development dependencies, then install Flask in editable mode.
2020-05-23 13:48:24 -07:00
.. code-block:: text
2023-06-27 14:11:18 -07:00
$ python -m pip install -U pip
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
$ pre-commit install --install-hooks
.. _GitHub account: https://github.com/join
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
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
.. _start coding:
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 latest ".x" 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/2.0.x
If you're submitting a feature addition or change, branch off of the "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
- Using your favorite editor, make your changes, `committing as you go`_.
- If you are in a codespace, you will be prompted to `create a fork`_ the first
time you make a commit. Enter ``Y`` to continue.
- Include tests that cover any code changes you make. Make sure the 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 description.
2020-05-23 13:48:24 -07:00
.. code-block:: text
$ git push --set-upstream origin your-branch-name
2015-03-31 12:44:47 +02:00
2022-12-22 23:23:23 +07:00
.. _committing as you go: https://afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes
.. _create a fork: https://docs.github.com/en/codespaces/developing-in-codespaces/using-source-control-in-your-codespace#about-automatic-forking
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
.. _Running the tests:
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
If you are using GitHub Codespaces, ``coverage`` is already installed
so you can skip the installation command.
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/>`__.