gnu: python-crontab: Enable tests.
* gnu/packages/python-xyz.scm (python-crontab): Enable tests. [arguments] <#:phases>: Add 'disable-failing-tests phase. Change-Id: I294ff69091ed1ed6b016c194bc8fb6e5af11978c
This commit is contained in:
parent
96895a65b4
commit
170efe6e68
1 changed files with 8 additions and 2 deletions
|
@ -27982,8 +27982,14 @@ format.")
|
||||||
(base32 "0cccrqc10r8781ba81x8r2frs3pl2m4hkm599k5358ak0xr7xgjb"))))
|
(base32 "0cccrqc10r8781ba81x8r2frs3pl2m4hkm599k5358ak0xr7xgjb"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; Comptability tests fail so they are disabled.
|
(list
|
||||||
`(#:tests? #f))
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'disable-failing-tests
|
||||||
|
(lambda _
|
||||||
|
(substitute* "tests/test_compatibility.py"
|
||||||
|
(("test_07_non_posix_shell")
|
||||||
|
"__off_test_07_non_posix_shell")))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list python-dateutil))
|
(list python-dateutil))
|
||||||
(home-page "https://gitlab.com/doctormo/python-crontab/")
|
(home-page "https://gitlab.com/doctormo/python-crontab/")
|
||||||
|
|
Reference in a new issue