python-cmd2/cmd2-no-coverage-tests.patch
Matej Cepl 7cc1bbd489 - Update to version 2.5.2
* Fixed default pytest execution when not using cmd2's custom
    invoke command via inv pytest.
- Update to version 2.5.1
  * Fixed readline bug when using ipy command with gnureadline
    and Python 3.13.
- Add patch:
  * cmd2-no-coverage-tests.patch

- Update to version 2.5.0
  Breaking Change
  * cmd2 2.5 supports Python 3.8+
    (removed support for Python 3.6 and 3.7).
  Bug Fixes
  * Fixed issue where persistent history file was not saved upon
    SIGHUP and SIGTERM signals.
  * Multiline commands are no longer fragmented in up-arrow history
  * Fixed bug where async_alert() overwrites readline's incremental
    and non-incremental search prompts.
    + This fix introduces behavior where an updated prompt won't
      display after an aborted search.
    + until a user presses Enter. See async_printing.py
    + example for how to handle this case using
      Cmd.need_prompt_refresh() and Cmd.async_refresh_prompt().
  Enhancements
  * Removed dependency on attrs and replaced with dataclasses.
  * add allow_clipboard initialization parameter and attribute to
    disable ability to.
  * add output to the operating system clipboard.
  * Updated unit tests to be Python 3.13 compliant.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cmd2?expand=0&rev=98
2024-11-05 21:50:12 +00:00

18 lines
373 B
Diff

diff --git a/pyproject.toml b/pyproject.toml
index bfd8d44..f88999e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -54,12 +54,6 @@ warn_unused_ignores = false
testpaths = [
"tests",
]
-addopts = [
- "--cov=cmd2",
- "--cov-append",
- "--cov-report=term",
- "--cov-report=html",
-]
[tool.ruff]
# Exclude a variety of commonly ignored directories.