1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-14 08:24:05 +02:00

gnu: mopidy: Skip 3 tests.

* gnu/packages/music.scm (mopidy):
[arguments] <test-flags>: Skip 3 more tests.
[native-inputs]: Add python-setuptools-scm.

Change-Id: I7c0ac828cfb7897da37ec8d998938354c55d439c
This commit is contained in:
Sharlatan Hellseher
2026-05-18 16:54:10 +01:00
parent 6629fee7c1
commit ffd54b8a2f
+12 -3
View File
@@ -509,7 +509,7 @@ enables iPod support in music players such as Clementine.")
(define-public mopidy
(package
(name "mopidy")
(version "3.4.2")
(version "3.4.2") ;4+ needs Python 3.13
(source
(origin
(method git-fetch)
@@ -522,9 +522,17 @@ enables iPod support in music players such as Clementine.")
(build-system pyproject-build-system)
(arguments
(list
;; tests: 1451 passed, 9 deselected, 2 warnings
#:test-flags
;; This test is not compatible with our build environment.
#~(list "-k" "not test_help_has_mopidy_options")
#~(list "-k" (string-join
(list "not test_help_has_mopidy_options"
;; Tests fail with not equal assertion, and
;; AssertionError: expected call not found.
"test_path_to_uri"
"test_missing_positionals"
"test_missing_positionals_subcommand")
" and not "))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'set-env
@@ -541,7 +549,8 @@ enables iPod support in music players such as Clementine.")
(native-inputs
(list python-pytest
python-responses
python-setuptools))
python-setuptools
python-setuptools-scm))
(inputs
(list bash-minimal
gst-libav))