File: development.rst

package info (click to toggle)
sortedcontainers 2.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 11,136 kB
  • sloc: python: 6,613; sh: 60; makefile: 18
file content (272 lines) | stat: -rw-r--r-- 13,702 bytes parent folder | download
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
Development and Support
=======================

.. contents::
   :depth: 1
   :local:

Reporting Issues
----------------

Support requests, bugs, issues, documentation typos, and general questions
should be submitted via the `GitHub Issue Tracker`_. The issue tracker offers a
web interface which allows relevant information to be entered and submitted to
the :doc:`Sorted Containers<index>` developers. Steps to file an issue:

#. Please search the issues database to determine whether the problem has
   already been reported. It may be that a fix or workaround has already been
   provided or is soon to be released. If additional information is needed then
   you are welcome to reopen the issue and comment regarding your specific
   scenario.
#. To file a new issue, click the green "New issue" button on the Issue
   Tracker. You will be required to sign-in to file an issue. It is not
   possible to submit an issue anonymously.
#. The issue form has two primary fields: title and comment. The title should
   be a very short description of the problem; preferably less than ten words.
   The comment should describe the problem in detail, including what you
   expected to happen and what instead did happen. Working code samples that
   illustrate the issue are best.
#. Submitted issues and comments will notify the lead developer and project
   maintainers. Bugs are typically fixed very quickly, within a week or so.
   Feature enhancements may take longer or be deferred until a pull request is
   made with a working prototype.

Support
-------

Development of :doc:`Sorted Containers<index>` is lead by Grant Jenks
<contact@grantjenks.com>. The preferred method of contact for support is to
create an issue on the `GitHub Issue Tracker`_. For anything sensitive, such as
conduct issues or security issues, please contact the development lead directly
by email.

.. _`GitHub Issue Tracker`: https://github.com/grantjenks/python-sortedcontainers/issues

How to Contribute?
------------------

Collaborators are welcome!

#. Check for open issues or open a fresh issue to start a discussion around a
   bug.
#. Fork the `repository`_ on GitHub and start making your changes to a new
   branch.
#. Write a test which shows that the bug was fixed.
#. Send a pull request and bug the development lead until it gets merged and
   published :)

.. _`repository`: https://github.com/grantjenks/python-sortedcontainers

Requests for Contributions
--------------------------

#. Terabytes of memory for benchmarks of 100,000,000,000 elements.
#. Find a way for SortedSet to inherit directly from ``set``.
#. Testing / benchmarking with Cython.

Get the Code
------------

:doc:`Sorted Containers<index>` is actively developed on GitHub, where the code
is `open source`_. The recommended way to get a copy of the source repository
is to clone the repository from GitHub::

    $ git clone git://github.com/grantjenks/python-sortedcontainers.git

.. _`open source`: https://github.com/grantjenks/python-sortedcontainers

Development Dependencies
------------------------

Install development dependencies with `pip`_::

    $ pip install -r requirements.txt

This includes everything for building/running tests, benchmarks and
documentation.

Some alternative implementations, such as `banyan`, may have issues when
installing on Windows. You can still develop :doc:`Sorted Containers<index>`
without these packages. They will be omitted from benchmarking.

.. _`pip`: https://pypi.org/project/pip/

Testing
-------

Testing uses `tox`_. If you don't want to install all the development
requirements, then, after downloading, you can simply run::

    $ python setup.py test

The test argument to `setup.py` will download a minimal testing infrastructure
and run the tests.

::

    $ python setup.py test
    running test
    running egg_info
    writing sortedcontainers.egg-info/PKG-INFO
    writing dependency_links to sortedcontainers.egg-info/dependency_links.txt
    writing top-level names to sortedcontainers.egg-info/top_level.txt
    reading manifest file 'sortedcontainers.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    writing manifest file 'sortedcontainers.egg-info/SOURCES.txt'
    running build_ext
    GLOB sdist-make: /Users/grantj/repos/python-sortedcontainers/setup.py
    py36 inst-nodeps: /Users/grantj/repos/python-sortedcontainers/.tox/dist/sortedcontainers-1.5.10.zip
    py36 installed: attrs==18.1.0,more-itertools==4.1.0,pluggy==0.6.0,py==1.5.3,pytest==3.5.1,six==1.11.0,sortedcontainers==1.5.10
    py36 runtests: PYTHONHASHSEED='365015869'
    py36 runtests: commands[0] | python -m pytest
    ================================================= test session starts =================================================
    platform darwin -- Python 3.6.5, pytest-3.5.1, py-1.5.3, pluggy-0.6.0
    rootdir: /Users/grantj/repos/python-sortedcontainers, inifile: tox.ini
    collected 357 items

    docs/introduction.rst .                                                                                         [  0%]
    sortedcontainers/__init__.py .                                                                                  [  0%]
    sortedcontainers/sorteddict.py ...........                                                                      [  3%]
    sortedcontainers/sortedlist.py .....................................                                            [ 14%]
    sortedcontainers/sortedset.py .................                                                                 [ 18%]
    tests/benchmark_splits_fill.py .                                                                                [ 19%]
    tests/sortedcollection.py .                                                                                     [ 19%]
    tests/test_coverage_sorteddict.py ...................................................                           [ 33%]
    tests/test_coverage_sortedkeylist_modulo.py ................................................................... [ 52%]
    tests/test_coverage_sortedkeylist_negate.py .......................................................             [ 68%]
    tests/test_coverage_sortedlist.py ..........................................................                    [ 84%]
    tests/test_coverage_sortedset.py ..................................................                             [ 98%]
    tests/test_stress_sorteddict.py ..                                                                              [ 98%]
    tests/test_stress_sortedkeylist.py .                                                                            [ 99%]
    tests/test_stress_sortedlist.py .                                                                               [ 99%]
    tests/test_stress_sortedset.py ..                                                                               [100%]

    ============================================= 357 passed in 10.86 seconds =============================================
    lint inst-nodeps: /Users/grantj/repos/python-sortedcontainers/.tox/dist/sortedcontainers-1.5.10.zip
    lint installed: astroid==1.6.4,isort==4.3.4,lazy-object-proxy==1.3.1,mccabe==0.6.1,pylint==1.9.0,six==1.11.0,sortedcontainers==1.5.10,wrapt==1.10.11
    lint runtests: PYTHONHASHSEED='365015869'
    lint runtests: commands[0] | pylint sortedcontainers
    Using config file /Users/grantj/repos/python-sortedcontainers/.pylintrc

    --------------------------------------------------------------------
    Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00)

    _______________________________________________________ summary _______________________________________________________
      py36: commands succeeded
      lint: commands succeeded

Coverage testing uses `pytest-cov`_:

::

    $ python -m pytest --cov sortedcontainers --cov-report term-missing --cov-branch
    ================================================= test session starts =================================================
    platform darwin -- Python 3.6.5, pytest-3.5.0, py-1.5.3, pluggy-0.6.0
    rootdir: /Users/grantj/repos/python-sortedcontainers, inifile: tox.ini
    plugins: cov-2.5.1, hypothesis-3.55.3
    collected 357 items

    docs/introduction.rst .                                                                                         [  0%]
    sortedcontainers/__init__.py .                                                                                  [  0%]
    sortedcontainers/sorteddict.py ...........                                                                      [  3%]
    sortedcontainers/sortedlist.py .....................................                                            [ 14%]
    sortedcontainers/sortedset.py .................                                                                 [ 18%]
    tests/benchmark_splits_fill.py .                                                                                [ 19%]
    tests/sortedcollection.py .                                                                                     [ 19%]
    tests/test_coverage_sorteddict.py ...................................................                           [ 33%]
    tests/test_coverage_sortedkeylist_modulo.py ................................................................... [ 52%]
    tests/test_coverage_sortedkeylist_negate.py .......................................................             [ 68%]
    tests/test_coverage_sortedlist.py ..........................................................                    [ 84%]
    tests/test_coverage_sortedset.py ..................................................                             [ 98%]
    tests/test_stress_sorteddict.py ..                                                                              [ 98%]
    tests/test_stress_sortedkeylist.py .                                                                            [ 99%]
    tests/test_stress_sortedlist.py .                                                                               [ 99%]
    tests/test_stress_sortedset.py ..                                                                               [100%]

    ---------- coverage: platform darwin, python 3.6.5-final-0 -----------
    Name                             Stmts   Miss Branch BrPart  Cover   Missing
    ----------------------------------------------------------------------------
    sortedcontainers/__init__.py        10      0      0      0   100%
    sortedcontainers/sorteddict.py     159      0     40      0   100%
    sortedcontainers/sortedlist.py    1001      8    420      3    99%   34-39, 44-45, 33->34, 785->787, 1429->1437
    sortedcontainers/sortedset.py      179      0     26      0   100%
    ----------------------------------------------------------------------------
    TOTAL                             1349      8    486      3    99%

It's normal to see coverage a little less than 100%. Some code is specific to
the Python runtime.

Stress testing is also based on pytest but can be run independently as a
module. Stress tests are kept in the tests directory and prefixed with
test_stress. Stress tests accept two arguments: an iteration count and random
seed value. For example, to run stress on the SortedList data type:

::

    $ python -m tests.test_stress_sortedlist 1000 0
    Python sys.version_info(major=2, minor=7, micro=0, releaselevel='final', serial=0)
    Setting iterations to 1000
    Setting seed to 0
    Exiting after 0:00:00.846000

If stress exits normally then it worked successfully. Some stress is run by tox
and pytest but the iteration count is limited at 1,000. More rigorous testing
requires increasing the iteration count to millions. At that level, it's best
to just let it run overnight. Stress testing will stop at the first failure.

Running Benchmarks
------------------

Running and plotting benchmarks is a two step process. Each is a Python script
in the tests directory. To run the benchmarks for :class:`SortedList`, plot the
results, and save the resulting graphs, run:

::

    $ python -m tests.benchmark_sortedlist --bare > tests/results_sortedlist.txt
    $ python -m tests.benchmark_plot tests/results_sortedlist.txt SortedList --save

Each script has a handful of useful arguments. Use ``--help`` to display
those. Consult the source for details. The file `tests/benchmark_plot.py`
contains notes about benchmarking different Python runtimes against each other.

If you simply want to run the benchmarks to observe the performance on your
local machine, then run:

::

    $ curl -OL https://github.com/grantjenks/python-sortedcontainers/zipball/master
    $ unzip master
    $ cd grantjenks-python-sortedcontainers-[GITHASH]/
    $ export PYTHONPATH=`pwd`
    $ python -m tests.benchmark_sortedlist
    $ python -m tests.benchmark_sorteddict
    $ python -m tests.benchmark_sortedset

The benchmarks will warn if some packages are not importable. This limits the
possible comparisons. See `requirements.txt` for the package names than can be
installed from PyPI.

Tested Runtimes
---------------

:doc:`Sorted Containers<index>` actively tests against the following versions
of Python:

* CPython 2.7
* CPython 3.2
* CPython 3.3
* CPython 3.4
* CPython 3.5
* CPython 3.6
* CPython 3.7
* PyPy
* PyPy3

Life will feel much saner if you use `venv`_ or `virtualenv`_ and `tox`_ to
manage and test each of the runtimes.

.. _`tox`: https://pypi.org/project/tox/
.. _`pytest-cov`: https://pypi.org/project/pytest-cov/
.. _`venv`: https://docs.python.org/3/library/venv.html
.. _`virtualenv`: https://pypi.org/project/virtualenv/