1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
=================
Developer's Guide
=================
The below sections will walk through how to set up a development environment,
make changes to the code, and test that they work. See the
:doc:`CONTRIBUTING` section for more information on getting started and
contributor expectations. Additional information for developer's can be found
at the pages listed below.
.. toctree::
:maxdepth: 1
CONTRIBUTING
xarray_migration
custom_reader
remote_file_support
plugins
satpy_internals
aux_data
writing_tests
testing
Coding guidelines
=================
Satpy is part of `Pytroll <http://pytroll.github.io/>`_,
and all code should follow the
`Pytroll coding guidelines and best
practices <http://pytroll.github.io/guidelines.html>`_.
Satpy is now Python 3 only and it is no longer needed to support Python 2.
Check ``pyproject.toml`` for the current Python versions any new code needs
to support.
.. _devinstall:
Development installation
========================
See the :doc:`../install` section for basic installation instructions. When
it comes time to install Satpy it should be installed from a clone of the git
repository and in development mode so that local file changes are
automatically reflected in the python environment. We highly recommend making
a separate conda environment or virtualenv for development. For example, you
can do this using conda_::
conda create -n satpy-dev python=3.11
conda activate satpy-dev
.. _conda: https://conda.io/
This will create a new environment called "satpy-dev" with Python 3.11
installed. The second command will activate the environment so any future
conda, python, or pip commands will use this new environment.
If you plan on contributing back to the project you should first
`fork the repository <https://help.github.com/articles/fork-a-repo/>`_ and
clone your fork. The package can then be installed in development mode by doing::
conda install --only-deps satpy
pip install -e .
The first command will install all dependencies needed by the Satpy
conda-forge package, but won't actually install Satpy. The second command
should be run from the root of the cloned Satpy repository (where the
``pyproject.toml`` is) and will install the actual package.
You can now edit the python files in your cloned repository and have them
immediately reflected in your conda environment.
All the required dependencies for a full development environment, i.e. running the
tests and building the documentation, can be installed with::
conda install eccodes
pip install -e ".[dev]"
Running tests
=============
Satpy tests are written using the third-party :doc:`pytest <pytest:index>`
package. There is usually no need to run all Satpy tests, but instead only
run the tests related to the component you are working on. All tests are
automatically run from the GitHub Pull Request using multiple versions of
Python, multiple operating systems, and multiple versions of dependency
libraries. If you want to run all Satpy tests you will need to install
additional dependencies that aren't needed for regular Satpy usage. To install
them run::
conda install eccodes
pip install -e ".[tests]"
Satpy tests can be executed by running::
pytest satpy/tests
You can also run a specific tests by specifying a sub-directory or module::
pytest satpy/tests/reader_tests/test_abi_l1b.py
Running benchmarks
==================
Satpy benchmarks are written using the
`Airspeed Velocity <https://asv.readthedocs.io/en/stable/index.html>`_
package (:mod:`asv`).
The benchmarks can be run using::
asv run
These are pretty computation intensive, and shouldn't be run unless you want to
diagnose some performance issue for example.
Once the benchmarks have run, you can use::
asv publish
asv preview
to have a look at the results. Again, have a look at the `asv` documentation for
more information.
Documentation
=============
Satpy's documentation is built using Sphinx. All documentation lives in the
``doc/`` directory of the project repository. For building the documentation,
additional packages are needed. These can be installed with ::
pip install -e ".[doc]"
Generating the documentation requires a one-time script to generate a list
of previews of all of the AreaDefinition objects used by the documentation.
This script can take 2+ minutes to execute so it is run separately from the
normal documentation build process. To run it::
cd doc/source/
python generate_area_def_list.py
cd ../../
After editing the source files there the documentation can be generated locally::
cd doc
make html
The output of the make command should be checked for warnings and errors.
|