[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
102/361: gnu: python-pydata-sphinx-theme: Disable one test.
From: |
guix-commits |
Subject: |
102/361: gnu: python-pydata-sphinx-theme: Disable one test. |
Date: |
Fri, 22 Nov 2024 06:00:21 -0500 (EST) |
andreas pushed a commit to branch python-team
in repository guix.
commit 46b786e713a13908f89cdd581dcde40550f43062
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 7 23:35:08 2024 +0200
gnu: python-pydata-sphinx-theme: Disable one test.
* gnu/packages/sphinx.scm (python-pydata-sphinx-theme)[build-system]: Use
pyproject-build-system.
[arguments]: Remove custom 'check phase; disable single test.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I5849dbeab6262c41c7d525029f9acc15b4f4ee72
---
gnu/packages/sphinx.scm | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 4a4332c800..03a072bc12 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 David Thompson <davet@gnu.org>
-;;; Copyright © 2015, 2017, 2019, 2020, 2021, 2023 Ricardo Wurmus
<rekado@elephly.net>
+;;; Copyright © 2015, 2017, 2019, 2020, 2021, 2023, 2024 Ricardo Wurmus
<rekado@elephly.net>
;;; Copyright © 2015, 2016, 2017 Leo Famulari <leo@famulari.name>
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; Copyright © 2016-2019, 2022, 2023 Marius Bakke <marius@gnu.org>
@@ -1388,21 +1388,20 @@ Sphinx documentation.")
(sha256
(base32
"0ph69bnnw9w8vksc7rk45q5yknsrsgk9a19xsbxym46jrmgz67b7"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
(list
- #:phases
- #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv")))))))
+ #:test-flags
+ ;; Fails due to inscrutable differences in the generated HTML
+ '(list "-k" "not test_logo")))
(propagated-inputs
(list python-beautifulsoup4
python-docutils
python-jinja2
python-sphinx))
- (native-inputs (list python-pytest python-pytest-regressions))
+ (native-inputs
+ (list python-pytest python-pytest-regressions
+ python-setuptools python-wheel))
(home-page "https://github.com/pydata/pydata-sphinx-theme")
(synopsis "Bootstrap-based Sphinx theme")
(description
- 165/361: gnu: python-pytest-runner: Improve package style., (continued)
- 165/361: gnu: python-pytest-runner: Improve package style., guix-commits, 2024/11/22
- 172/361: gnu: python-flask-login: Move to pyproject-build-system., guix-commits, 2024/11/22
- 175/361: gnu: python-sphinx-autodoc-typehints: Move to pyproject-build-system., guix-commits, 2024/11/22
- 183/361: gnu: python-jaraco-classes: Move to pyproject-build-system., guix-commits, 2024/11/22
- 191/361: gnu: python-pytest-enabler: Break dependency cycle., guix-commits, 2024/11/22
- 78/361: gnu: python-send2trash: Update to 1.8.2., guix-commits, 2024/11/22
- 96/361: gnu: Add python-jupyter-events., guix-commits, 2024/11/22
- 88/361: gnu: python-ipykernel: Set environment variable., guix-commits, 2024/11/22
- 93/361: gnu: python-json-logger: Update to 2.0.7., guix-commits, 2024/11/22
- 97/361: gnu: Add python-jupyter-server-terminals., guix-commits, 2024/11/22
- 102/361: gnu: python-pydata-sphinx-theme: Disable one test.,
guix-commits <=
- 100/361: gnu: python-tabulate: Add Setuptools and Wheel., guix-commits, 2024/11/22
- 101/361: gnu: python-openapi-schema-validator: Update to 0.6.2., guix-commits, 2024/11/22
- 106/361: gnu: Add python-pathable., guix-commits, 2024/11/22
- 103/361: gnu: python-lazy-object-proxy: Update to 1.10.0., guix-commits, 2024/11/22
- 105/361: gnu: python-sparqlkernel: Patch install script., guix-commits, 2024/11/22
- 110/361: gnu: python-openapi-core: Update to 0.19.1., guix-commits, 2024/11/22
- 107/361: gnu: Add python-jsonschema-path., guix-commits, 2024/11/22
- 114/361: gnu: python-sphinx-pytest: Update to 0.2.0., guix-commits, 2024/11/22
- 113/361: gnu: python-jupyterlab-server: Update to 2.27.1., guix-commits, 2024/11/22
- 108/361: gnu: python-openapi-spec-validator: Update to 0.7.1., guix-commits, 2024/11/22