14
0
forked from pool/python-mutmut

- update to 3.2.2:

* Fixed crash when running mutmut results
  * Read paths_to_mutate from config file
  * Mutate break to return to avoid timeouts
  * Added debug mode. Enable with debug=True in setup.cfg under
    [mutmut]
  * Fixed new test detection. The old code incorrectly detected
    new tests when there were none, creating a much slower
    interaction loop for fixing mutants.
  * And many more fixes
  * Timeouts for mutants implemented.
  * Browser: syntax highlighting for diff view
  * More fixes for generators.
  * Fix for src-style layout of projects.
  * Fixed bug where mutmut would recollect all tests on every
    run, slowing down startup.
  * Correctly handle mutation for generator functions (yield).
  * Fixed so that from __future__ lines are always first.
  * If no stats are collected exit directly, as that is a
    breaking error for mutation testing.
  * Changed name mangling to make mutants less likely to trigger
    name-based python magic, like in pytest where functions named
    test_* have special meaning.
  * Another attempt to get the pypi package to work
  * Another attempt to get the pypi package to work
  * Fixed missing requirement in install package
  * Fixed missing file from the install package
  * Fixed bad entrypoint definition
  * Ignore files that can't be parsed by parso
  * Missed a file in distribution, so browse command was broken.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mutmut?expand=0&rev=15
This commit is contained in:
2024-11-21 10:12:29 +00:00
committed by Git OBS Bridge
parent 84fc5f12b4
commit 00a7d58d80
5 changed files with 55 additions and 60 deletions

View File

@@ -1,3 +1,43 @@
-------------------------------------------------------------------
Thu Nov 21 10:11:34 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.2.2:
* Fixed crash when running mutmut results
* Read paths_to_mutate from config file
* Mutate break to return to avoid timeouts
* Added debug mode. Enable with debug=True in setup.cfg under
[mutmut]
* Fixed new test detection. The old code incorrectly detected
new tests when there were none, creating a much slower
interaction loop for fixing mutants.
* And many more fixes
* Timeouts for mutants implemented.
* Browser: syntax highlighting for diff view
* More fixes for generators.
* Fix for src-style layout of projects.
* Fixed bug where mutmut would recollect all tests on every
run, slowing down startup.
* Correctly handle mutation for generator functions (yield).
* Fixed so that from __future__ lines are always first.
* If no stats are collected exit directly, as that is a
breaking error for mutation testing.
* Changed name mangling to make mutants less likely to trigger
name-based python magic, like in pytest where functions named
test_* have special meaning.
* Another attempt to get the pypi package to work
* Another attempt to get the pypi package to work
* Fixed missing requirement in install package
* Fixed missing file from the install package
* Fixed bad entrypoint definition
* Ignore files that can't be parsed by parso
* Missed a file in distribution, so browse command was broken.
* Execution model switched to mutation schemata, which enabled
parallell execution.
* New terminal UI
* Pytest only, which enabled better integration, cutting
execution time significantly.
- drop pr_134.patch (upstream)
-------------------------------------------------------------------
Thu Mar 14 10:02:38 UTC 2024 - Dirk Müller <dmueller@suse.com>