15
0
Files
python-graphviz/python-graphviz-pytest.patch
Dirk Mueller 4a6ea4f30f Accepting request 940278 from home:dimstar:Factory
- Add noto-sans-fonts: in order to have a reliable test suite with
  pango 1.50, we need to have some fonts available.
- Add python-graphviz-pytest.patch: Allow to run pytest directly,
  instead of run-tests.py. Allows us to further use %%pytest
  without workarounds. Patch will be part of the next version.

- Update to version 0.19.1:
  + Fix undecoded CalledProcessError.stdout and .stderr when
    .pipe() call with an encoding different from self.encoding
    fails.
  + Fix missing project root conftest.py in source distribution.
  + Extend examples/graphviz-escapes.ipynb.
  + Improve test coverage.
  + Increase build scripts verbosity.

- Update to version 0.19:
  + Add PendingDeprecationWarning to calls using positional
    arguments that will be deprecated in a later version.
  + Add keyword-only outfile argument to .render() and stand-alone
    graphviz.render().
  + Add graphviz.set_jupyter_format() to set the output format used
    by the Jupyter visualization of graphviz.Graph,
    graphviz.Digraph, and graphviz.Source.
  + Add keyword-only raise_if_result_exists argument to .render()
    and stand-alone graphviz.render().
- For all intermediate releases between 0.14.1 and 0.19, please see
  the packaged CHANGES.txt.

OBS-URL: https://build.opensuse.org/request/show/940278
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-graphviz?expand=0&rev=24
2021-12-13 18:44:26 +00:00

76 lines
2.2 KiB
Diff

From 961dbdd607399e264a752a73df874f686538d949 Mon Sep 17 00:00:00 2001
From: Sebastian Bank <sebastian.bank@uni-leipzig.de>
Date: Mon, 13 Dec 2021 10:53:45 +0100
Subject: [PATCH] move doctest +NO_EXE definition/setup to conftest.py
- see #152
---
conftest.py | 16 +++++++++++++++-
run-tests.py | 17 ++---------------
2 files changed, 17 insertions(+), 16 deletions(-)
Index: graphviz-0.19.1/conftest.py
===================================================================
--- graphviz-0.19.1.orig/conftest.py
+++ graphviz-0.19.1/conftest.py
@@ -1,6 +1,21 @@
"""pytest command line options and doctest namespace."""
import pytest
+import doctest
+import unittest.mock
+
+NO_EXE = doctest.register_optionflag('NO_EXE')
+
+class NoExeChecker(doctest.OutputChecker): # noqa: E302
+
+ def check_output(self, want, got, optionflags, *args, **kwargs) -> bool:
+ if optionflags & NO_EXE:
+ return True
+ return super().check_output(want, got, optionflags, *args, **kwargs)
+
+unittest.mock.patch.object(doctest, 'OutputChecker', new=NoExeChecker).start() # noqa: E305
+
+import pytest # noqa: E402
SKIP_EXE = '--skip-exe'
Index: graphviz-0.19.1/run-tests.py
===================================================================
--- graphviz-0.19.1.orig/run-tests.py
+++ graphviz-0.19.1/run-tests.py
@@ -7,11 +7,11 @@ import doctest
import pathlib
import platform
import sys
-from unittest import mock
-SELF = pathlib.Path(__file__)
+import pytest
NO_EXE = doctest.register_optionflag('NO_EXE')
+SELF = pathlib.Path(__file__)
ARGS = [#'--skip-exe',
#'--only-exe',
@@ -26,19 +26,6 @@ ARGS = [#'--skip-exe',
if platform.system() == 'Windows' and 'idlelib' in sys.modules:
ARGS += ['--capture=sys', '--color=no']
-
-class NoExeChecker(doctest.OutputChecker):
-
- def check_output(self, want, got, optionflags, *args, **kwargs) -> bool:
- if optionflags & NO_EXE:
- return True
- return super().check_output(want, got, optionflags, *args, **kwargs)
-
-
-mock.patch.object(doctest, 'OutputChecker', new=NoExeChecker).start()
-import pytest # noqa: E402
-
-
print('run', [SELF.name] + sys.argv[1:])
args = ARGS + sys.argv[1:]