mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-17 12:30:38 +02:00
gnu: python-robotframework-sshlibrary: Update to 3.7.0 and honor TESTS?.
* gnu/packages/python-xyz.scm (python-robotframework-sshlibrary): Update to 3.7.0. [phases]: Delete trailing #t. {check}: Honor TESTS?.
This commit is contained in:
parent
2cc617c181
commit
1fdad09d1c
1 changed files with 9 additions and 9 deletions
|
@ -4458,7 +4458,7 @@ utility, a static analysis tool (linter) for Robot Framework source files.")
|
||||||
(define-public python-robotframework-sshlibrary
|
(define-public python-robotframework-sshlibrary
|
||||||
(package
|
(package
|
||||||
(name "python-robotframework-sshlibrary")
|
(name "python-robotframework-sshlibrary")
|
||||||
(version "3.3.0")
|
(version "3.7.0")
|
||||||
;; There are no tests in the PyPI archive.
|
;; There are no tests in the PyPI archive.
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -4469,7 +4469,7 @@ utility, a static analysis tool (linter) for Robot Framework source files.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mk6dz2jqqndbx4yji09012q6rmadnqdywi7czvj62b0s07dr3r2"))))
|
"09ak22rh9qa9wlpvhkliyybcp4xafjhxsps28wz0pf0030771xav"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -4483,14 +4483,14 @@ utility, a static analysis tool (linter) for Robot Framework source files.")
|
||||||
(invoke "invoke" "kw-docs" "project-docs")
|
(invoke "invoke" "kw-docs" "project-docs")
|
||||||
(mkdir-p doc)
|
(mkdir-p doc)
|
||||||
(for-each delete-file (find-files "docs" "\\.rst"))
|
(for-each delete-file (find-files "docs" "\\.rst"))
|
||||||
(copy-recursively "docs" doc)
|
(copy-recursively "docs" doc))))
|
||||||
#t)))
|
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
;; Some tests require an SSH server; we remove them.
|
(when tests?
|
||||||
(delete-file "utest/test_client_api.py")
|
;; Some tests require an SSH server; we remove them.
|
||||||
(delete-file "utest/test_scp.py")
|
(delete-file "utest/test_client_api.py")
|
||||||
(invoke "python" "utest/run.py"))))))
|
(delete-file "utest/test_scp.py")
|
||||||
|
(invoke "python" "utest/run.py")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-robotframework" ,python-robotframework)
|
`(("python-robotframework" ,python-robotframework)
|
||||||
("python-paramiko" ,python-paramiko)
|
("python-paramiko" ,python-paramiko)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue