summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-10 23:06:10 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:18:14 +0100
commita611ae225d6dd933846ee450f217956a70a1282d (patch)
tree77b88b16542337fd803ad8cce819c47280d39bdc /gnu/packages/python-check.scm
parenta0ed2482e488b12546014811383d17bab5c78892 (diff)
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>
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm22
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index c441b11bee1..63fb8c995a9 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1739,10 +1739,11 @@ notebooks.")
1739 (arguments 1739 (arguments
1740 (list 1740 (list
1741 #:test-flags 1741 #:test-flags
1742 '(list 1742 ;; This test fails because of a mismatch in the output of LaTeX
1743 ;; This test fails because of a mismatch in the output of LaTeX 1743 ;; equation environments. Seems OK to skip.
1744 ;; equation environments. Seems OK to skip. 1744 #~(list "--ignore=tests/test_nbdime_reporter.py"
1745 "--ignore=tests/test_nbdime_reporter.py") 1745 ;; assert <ExitCode.USAGE_ERROR: 4> == 0
1746 "--deselect=tests/test_coverage.py::test_coverage")
1746 #:phases 1747 #:phases
1747 #~(modify-phases %standard-phases 1748 #~(modify-phases %standard-phases
1748 (add-before 'check 'fix-test 1749 (add-before 'check 'fix-test
@@ -1750,19 +1751,18 @@ notebooks.")
1750 ;; This test fails because of a mismatch in the output of LaTeX 1751 ;; This test fails because of a mismatch in the output of LaTeX
1751 ;; equation environments. Seems OK to skip. 1752 ;; equation environments. Seems OK to skip.
1752 (delete-file 1753 (delete-file
1753 "tests/ipynb-test-samples/test-latex-pass-correctouput.ipynb")))))) 1754 "tests/ipynb-test-samples/test-latex-pass-correctouput.ipynb")
1755 ;; Prevent adding python-sympy.
1756 (delete-file
1757 "tests/ipynb-test-samples/test-latex-pass-failsbutignoreoutput.ipynb"))))))
1754 (native-inputs 1758 (native-inputs
1755 (list python-pytest 1759 (list python-pytest
1756 python-pytest-cov 1760 python-setuptools))
1757 python-setuptools
1758 python-sympy
1759 python-wheel))
1760 (propagated-inputs 1761 (propagated-inputs
1761 (list python-coverage 1762 (list python-coverage
1762 python-ipykernel 1763 python-ipykernel
1763 python-jupyter-client 1764 python-jupyter-client
1764 python-nbformat 1765 python-nbformat))
1765 python-six))
1766 (home-page "https://github.com/computationalmodelling/nbval") 1766 (home-page "https://github.com/computationalmodelling/nbval")
1767 (synopsis "Pytest plugin to validate Jupyter notebooks") 1767 (synopsis "Pytest plugin to validate Jupyter notebooks")
1768 (description 1768 (description