~ruther/guix-local

a611ae225d6dd933846ee450f217956a70a1282d — Sharlatan Hellseher 5 months ago a0ed248
gnu: python-nbval: Reduce closure size.

* gnu/packages/python-check.scm (python-nbval):
[arguments] <test-flags>: Skip some more tests to reduce closure size.
[propagated-inputs]: Remove python-six.
[native-inputs]: Remove python-pytest-cov, python-sympy, and
python-wheel.

Change-Id: I3e3e4378a837d62c553ff432aecf45d266589aee
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
1 files changed, 11 insertions(+), 11 deletions(-)

M gnu/packages/python-check.scm
M gnu/packages/python-check.scm => gnu/packages/python-check.scm +11 -11
@@ 1739,10 1739,11 @@ notebooks.")
    (arguments
     (list
      #:test-flags
      '(list
        ;; This test fails because of a mismatch in the output of LaTeX
        ;; equation environments.  Seems OK to skip.
        "--ignore=tests/test_nbdime_reporter.py")
      ;; This test fails because of a mismatch in the output of LaTeX
      ;; equation environments.  Seems OK to skip.
      #~(list "--ignore=tests/test_nbdime_reporter.py"
              ;; assert <ExitCode.USAGE_ERROR: 4> == 0
              "--deselect=tests/test_coverage.py::test_coverage")
      #:phases
      #~(modify-phases %standard-phases
          (add-before 'check 'fix-test


@@ 1750,19 1751,18 @@ notebooks.")
              ;; This test fails because of a mismatch in the output of LaTeX
              ;; equation environments.  Seems OK to skip.
              (delete-file
               "tests/ipynb-test-samples/test-latex-pass-correctouput.ipynb"))))))
               "tests/ipynb-test-samples/test-latex-pass-correctouput.ipynb")
              ;; Prevent adding python-sympy.
              (delete-file
               "tests/ipynb-test-samples/test-latex-pass-failsbutignoreoutput.ipynb"))))))
    (native-inputs
     (list python-pytest
           python-pytest-cov
           python-setuptools
           python-sympy
           python-wheel))
           python-setuptools))
    (propagated-inputs
     (list python-coverage
           python-ipykernel
           python-jupyter-client
           python-nbformat
           python-six))
           python-nbformat))
    (home-page "https://github.com/computationalmodelling/nbval")
    (synopsis "Pytest plugin to validate Jupyter notebooks")
    (description