Revisions of python-coverage

buildservice-autocommit accepted request 1173002 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 130)
baserev update by copy to link target
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 129)
- Update to 7.5.1:
  * Fix: a pragma comment on the continuation lines of a multi-line statement
    now excludes the statement and its body, the same as if the pragma is
    on the first line.
  * Fix: very complex source files could cause a maximum recursion error when
    creating an HTML report.
  * HTML report improvements:
    + Support files (JavaScript and CSS) referenced by the HTML report now have
      hashes added to their names to ensure updated files are used instead of
      stale cached copies.
    + Missing branch coverage explanations that said "the condition was never
      false" now read "the condition was always true" because it's easier to
      understand.
    + Column sort order is remembered better as you move between the index
      pages.
  * Added initial support for function and class reporting in the HTML report.
  * Other HTML report improvements:
    + There is now a "hide covered" checkbox to filter out 100% files.
    + The index page is always sorted by one of its columns, with clearer
      indications of the sorting.
    + The "previous file" shortcut key didn't work on the index page, but now
      it does.
  * The debug output showing which configuration files were tried now shows
    absolute paths to help diagnose problems where settings aren't taking
    effect, and is renamed from "attempted_config_files" to the more logical
    "config_files_attempted."
  * Fix: in some cases, even with [run] relative_files=True, a data file
    could be created with absolute path names.  When combined with other
    relative data files, it was random whether the absolute file names would
    be made relative or not. If they weren't, then a file would be listed
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
Displaying revisions 1 - 20 of 130
openSUSE Build Service is sponsored by