Revisions of python-coverage

buildservice-autocommit accepted request 1129470 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 128)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 127)
- update to 7.3.2:
  * The ``coverage lcov`` command ignored the ``[report]
    exclude_lines`` and ``[report] exclude_also`` settings
  * Sometimes SQLite will create journal files alongside the
    coverage.py database files.  These are ephemeral, but could
    be mistakenly included when combining data files.
  * On Python 3.12+, we now disable SQLite writing journal files,
    which should be a little faster.
  * The new 3.12 soft keyword ``type`` is properly bolded in HTML
    reports.
  * Removed the "fullcoverage" feature used by CPython to measure
    the coverage of early-imported standard library modules.
buildservice-autocommit accepted request 1111926 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 126)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 125)
- update to 7.3.1:
  * The semantics of stars in file patterns has been clarified in
    the docs.  A leading or trailing star matches any number of path
    components, like a double star would.  This is different than
    the behavior of a star in the middle of a pattern.
    since 6.4.3.
- Handle cases where python2 is disabled
- add LICENSE.txt
- python3 package added
- minor spec improvement (files section)
buildservice-autocommit accepted request 1109341 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 124)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 123)
- Update in SLE-15 (bsc#1195916, bsc#1196696, jsc#PM-3356, jsc#SLE-23972)
buildservice-autocommit accepted request 1103928 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 122)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1103921 from Matthias Fehring's avatar Matthias Fehring (buschmann23) (revision 121)
- specfile
  * fix build on Leap 15 by moving sle15_python_module_pythons macro
    to the top
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 1103787 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 120)
update to latest version
buildservice-autocommit accepted request 1103606 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 119)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1103414 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 118)
update to latest version
buildservice-autocommit accepted request 1086006 from Daniel Garcia's avatar Daniel Garcia (dgarcia) (revision 117)
baserev update by copy to link target
Daniel Garcia's avatar Daniel Garcia (dgarcia) committed (revision 116)
- Add fix-tests.patch gh#nedbat/coveragepy@3fdda7d017ff
- Update to 7.2.5:
  * Fix: html_report() could fail with an AttributeError on isatty if
    run in an unusual environment where sys.stdout had been replaced.
    This is now fixed.
- 7.2.4:
  * Fix: with relative_files = true, specifying a specific file to
    include or omit wouldn't work correctly (issue 1604). This is now
    fixed, with testing help by Marc Gibbons.
  * Fix: the XML report would have an incorrect <source> element when
    using relative files and the source option ended with a slash
    (issue 1541). This is now fixed, thanks to Kevin Brown-Silva.
  * When the HTML report location is printed to the terminal, it's now
    a terminal-compatible URL, so that you can click the location to
    open the HTML file in your browser. Finishes issue 1523 thanks to
    Ricardo Newbery.
  * Docs: a new :ref:`Migrating page <migrating>` with details about
    how to migrate between major versions of coverage.py. It currently
    covers the wildcard changes in 7.x. Thanks, Brian Grohe.
- 7.2.3:
  * Fix: the :ref:`config_run_sigterm` setting was meant to capture
    data if a process was terminated with a SIGTERM signal, but it
    didn't always. This was fixed thanks to Lewis Gaul, closing issue
    1599.
  * Performance: HTML reports with context information are now much
    more compact. File sizes are typically as small as one-third the
    previous size, but can be dramatically smaller. This closes issue
    1584 thanks to Oleh Krehel.
  * Development dependencies no longer use hashed pins, closing issue
    1592.
buildservice-autocommit accepted request 1081957 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 115)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1081375 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 114)
SR for python stack proposal
buildservice-autocommit accepted request 1074499 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 113)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 112)
- update to 7.2.2:
  * Fix: if a virtualenv was created inside a source directory,
    and a sourced package was installed inside the virtualenv,
    then all of the third-party packages inside the virtualenv
    would be measured.  This was incorrect, but
    has now been fixed: only the specified packages will be
    measured.
  * Fix: the ``coverage lcov`` command could create a .lcov file
    with incorrect LF (lines found) and LH (lines hit) totals
  * Fix: the ``coverage xml`` command on Windows could create a
    .xml file with duplicate ``<package>`` elements.
buildservice-autocommit accepted request 1071881 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 111)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 110)
- update to 7.2.1:
  * Fix: the PyPI page had broken links to documentation pages,
    but no longer does
  * Fix: public members of the coverage module are now properly
    indicated so that mypy will find them
  * Added a new setting ``[report] exclude_also`` to let you add
    more exclusions without overwriting the defaults.
  * Added a :meth:`.CoverageData.purge_files` method to remove
    recorded data for a particular file.
  * Fix: when reporting commands fail, they will no longer
    congratulate themselves with messages like "Wrote XML
    report to file.xml" before spewing a traceback about
    their failure.
  * Fix: arguments in the public API that name file paths now
    accept pathlib.Path objects.  This includes the
    ``data_file`` and ``config_file`` arguments to
    the Coverage constructor and the ``basename`` argument to
    CoverageData.
  * Fix: In some embedded environments, an IndexError could occur
    on stop() when the originating thread exits before completion.
    This is now fixed, thanks to
  * Added a ``py.typed`` file to announce our type-hintedness.
buildservice-autocommit accepted request 1063170 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 109)
baserev update by copy to link target
Displaying revisions 1 - 20 of 128
openSUSE Build Service is sponsored by