Prepare release version 8.2.2
This commit is contained in:
		
							parent
							
								
									214d098fcc
								
							
						
					
					
						commit
						329d371214
					
				| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
Updated Sphinx theme to use Furo instead of Flask, enabling Dark mode theme.
 | 
			
		||||
| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
Fix possible catastrophic performance slowdown on a certain parametrization pattern involving many higher-scoped parameters.
 | 
			
		||||
| 
						 | 
				
			
			@ -1,2 +0,0 @@
 | 
			
		|||
Added a subsection to the documentation for debugging flaky tests to mention
 | 
			
		||||
lack of thread safety in pytest as a possible source of flakyness.
 | 
			
		||||
| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
The documentation webpages now links to a canonical version to reduce outdated documentation in search engine results.
 | 
			
		||||
| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
Fix a regression in pytest 8.2.0 where unittest class instances (a fresh one is created for each test) were not released promptly on test teardown but only on session teardown.
 | 
			
		||||
| 
						 | 
				
			
			@ -1 +0,0 @@
 | 
			
		|||
Fix possible "Directory not empty" crashes arising from concurent cache dir (``.pytest_cache``) creation. Regressed in pytest 8.2.0.
 | 
			
		||||
| 
						 | 
				
			
			@ -6,6 +6,7 @@ Release announcements
 | 
			
		|||
   :maxdepth: 2
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
   release-8.2.2
 | 
			
		||||
   release-8.2.1
 | 
			
		||||
   release-8.2.0
 | 
			
		||||
   release-8.1.2
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -0,0 +1,19 @@
 | 
			
		|||
pytest-8.2.2
 | 
			
		||||
=======================================
 | 
			
		||||
 | 
			
		||||
pytest 8.2.2 has just been released to PyPI.
 | 
			
		||||
 | 
			
		||||
This is a bug-fix release, being a drop-in replacement. To upgrade::
 | 
			
		||||
 | 
			
		||||
  pip install --upgrade pytest
 | 
			
		||||
 | 
			
		||||
The full changelog is available at https://docs.pytest.org/en/stable/changelog.html.
 | 
			
		||||
 | 
			
		||||
Thanks to all of the contributors to this release:
 | 
			
		||||
 | 
			
		||||
* Bruno Oliveira
 | 
			
		||||
* Ran Benita
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
Happy testing,
 | 
			
		||||
The pytest Development Team
 | 
			
		||||
| 
						 | 
				
			
			@ -22,7 +22,7 @@ For information about fixtures, see :ref:`fixtures`. To see a complete list of a
 | 
			
		|||
    cachedir: .pytest_cache
 | 
			
		||||
    rootdir: /home/sweet/project
 | 
			
		||||
    collected 0 items
 | 
			
		||||
    cache -- .../_pytest/cacheprovider.py:549
 | 
			
		||||
    cache -- .../_pytest/cacheprovider.py:560
 | 
			
		||||
        Return a cache object that can persist state between testing sessions.
 | 
			
		||||
 | 
			
		||||
        cache.get(key, default)
 | 
			
		||||
| 
						 | 
				
			
			@ -115,7 +115,7 @@ For information about fixtures, see :ref:`fixtures`. To see a complete list of a
 | 
			
		|||
 | 
			
		||||
        For more details: :ref:`doctest_namespace`.
 | 
			
		||||
 | 
			
		||||
    pytestconfig [session scope] -- .../_pytest/fixtures.py:1335
 | 
			
		||||
    pytestconfig [session scope] -- .../_pytest/fixtures.py:1338
 | 
			
		||||
        Session-scoped fixture that returns the session's :class:`pytest.Config`
 | 
			
		||||
        object.
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -28,6 +28,35 @@ with advance notice in the **Deprecations** section of releases.
 | 
			
		|||
 | 
			
		||||
.. towncrier release notes start
 | 
			
		||||
 | 
			
		||||
pytest 8.2.2 (2024-06-04)
 | 
			
		||||
=========================
 | 
			
		||||
 | 
			
		||||
Bug Fixes
 | 
			
		||||
---------
 | 
			
		||||
 | 
			
		||||
- `#12355 <https://github.com/pytest-dev/pytest/issues/12355>`_: Fix possible catastrophic performance slowdown on a certain parametrization pattern involving many higher-scoped parameters.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
- `#12367 <https://github.com/pytest-dev/pytest/issues/12367>`_: Fix a regression in pytest 8.2.0 where unittest class instances (a fresh one is created for each test) were not released promptly on test teardown but only on session teardown.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
- `#12381 <https://github.com/pytest-dev/pytest/issues/12381>`_: Fix possible "Directory not empty" crashes arising from concurent cache dir (``.pytest_cache``) creation. Regressed in pytest 8.2.0.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
Improved Documentation
 | 
			
		||||
----------------------
 | 
			
		||||
 | 
			
		||||
- `#12290 <https://github.com/pytest-dev/pytest/issues/12290>`_: Updated Sphinx theme to use Furo instead of Flask, enabling Dark mode theme.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
- `#12356 <https://github.com/pytest-dev/pytest/issues/12356>`_: Added a subsection to the documentation for debugging flaky tests to mention
 | 
			
		||||
  lack of thread safety in pytest as a possible source of flakyness.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
- `#12363 <https://github.com/pytest-dev/pytest/issues/12363>`_: The documentation webpages now links to a canonical version to reduce outdated documentation in search engine results.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
pytest 8.2.1 (2024-05-19)
 | 
			
		||||
=========================
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -162,7 +162,7 @@ objects, they are still using the default pytest representation:
 | 
			
		|||
    rootdir: /home/sweet/project
 | 
			
		||||
    collected 8 items
 | 
			
		||||
 | 
			
		||||
    <Dir parametrize.rst-199>
 | 
			
		||||
    <Dir parametrize.rst-200>
 | 
			
		||||
      <Module test_time.py>
 | 
			
		||||
        <Function test_timedistance_v0[a0-b0-expected0]>
 | 
			
		||||
        <Function test_timedistance_v0[a1-b1-expected1]>
 | 
			
		||||
| 
						 | 
				
			
			@ -239,7 +239,7 @@ If you just collect tests you'll also nicely see 'advanced' and 'basic' as varia
 | 
			
		|||
    rootdir: /home/sweet/project
 | 
			
		||||
    collected 4 items
 | 
			
		||||
 | 
			
		||||
    <Dir parametrize.rst-199>
 | 
			
		||||
    <Dir parametrize.rst-200>
 | 
			
		||||
      <Module test_scenarios.py>
 | 
			
		||||
        <Class TestSampleWithScenarios>
 | 
			
		||||
          <Function test_demo1[basic]>
 | 
			
		||||
| 
						 | 
				
			
			@ -318,7 +318,7 @@ Let's first see how it looks like at collection time:
 | 
			
		|||
    rootdir: /home/sweet/project
 | 
			
		||||
    collected 2 items
 | 
			
		||||
 | 
			
		||||
    <Dir parametrize.rst-199>
 | 
			
		||||
    <Dir parametrize.rst-200>
 | 
			
		||||
      <Module test_backends.py>
 | 
			
		||||
        <Function test_db_initialized[d1]>
 | 
			
		||||
        <Function test_db_initialized[d2]>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -152,7 +152,7 @@ The test collection would look like this:
 | 
			
		|||
    configfile: pytest.ini
 | 
			
		||||
    collected 2 items
 | 
			
		||||
 | 
			
		||||
    <Dir pythoncollection.rst-200>
 | 
			
		||||
    <Dir pythoncollection.rst-201>
 | 
			
		||||
      <Module check_myapp.py>
 | 
			
		||||
        <Class CheckMyApp>
 | 
			
		||||
          <Function simple_check>
 | 
			
		||||
| 
						 | 
				
			
			@ -215,7 +215,7 @@ You can always peek at the collection tree without running tests like this:
 | 
			
		|||
    configfile: pytest.ini
 | 
			
		||||
    collected 3 items
 | 
			
		||||
 | 
			
		||||
    <Dir pythoncollection.rst-200>
 | 
			
		||||
    <Dir pythoncollection.rst-201>
 | 
			
		||||
      <Dir CWD>
 | 
			
		||||
        <Module pythoncollection.py>
 | 
			
		||||
          <Function test_function>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -22,7 +22,7 @@ Install ``pytest``
 | 
			
		|||
.. code-block:: bash
 | 
			
		||||
 | 
			
		||||
    $ pytest --version
 | 
			
		||||
    pytest 8.2.1
 | 
			
		||||
    pytest 8.2.2
 | 
			
		||||
 | 
			
		||||
.. _`simpletest`:
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1418,7 +1418,7 @@ Running the above tests results in the following test IDs being used:
 | 
			
		|||
   rootdir: /home/sweet/project
 | 
			
		||||
   collected 12 items
 | 
			
		||||
 | 
			
		||||
   <Dir fixtures.rst-218>
 | 
			
		||||
   <Dir fixtures.rst-219>
 | 
			
		||||
     <Module test_anothersmtp.py>
 | 
			
		||||
       <Function test_showhelo[smtp.gmail.com]>
 | 
			
		||||
       <Function test_showhelo[mail.python.org]>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue