doc/changes/3.27.rst
changeset 12358 e0b659abe4b8
child 12508 a8c1ea390400
equal deleted inserted replaced
12357:e385c9732f1e 12358:e0b659abe4b8
       
     1 3.27 (not yet released)
       
     2 =======================
       
     3 
       
     4 New features
       
     5 ------------
       
     6 
       
     7 * Tests can now be run concurrently across multiple processes. You can use
       
     8   `pytest-xdist`_ for that. For tests using `PostgresApptestConfiguration` you
       
     9   should be aware that `startpgcluster()` can't run concurrently. Workaround is
       
    10   to call pytest with ``--dist=loadfile`` to use a single test process per test
       
    11   module or use an existing database cluster and set ``db-host`` and
       
    12   ``db-port`` of ``devtools.DEFAULT_PSQL_SOURCES['system']`` accordingly.
       
    13 
       
    14 .. _pytest-xdist: https://github.com/pytest-dev/pytest-xdist
       
    15