me
/
guix
Archived
1
0
Fork 0

gnu: python-blessed: Run test suite.

* gnu/packages/python-xyz.scm (python-blessed)[arguments]: Run the test
suite.
master
Efraim Flashner 2023-05-07 12:13:01 +03:00
parent 2a38bc9a77
commit 6f19d7001b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 10 additions and 0 deletions

View File

@ -27821,6 +27821,16 @@ placement and scaling of SVG figures and adding markers, such as labels.")
;; Don't get hung up on Windows test failures.
(delete-file "blessed/win_terminal.py")))))
(build-system python-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(replace 'check
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
(when tests?
(add-installed-pythonpath inputs outputs)
(delete-file "tox.ini")
(invoke "python" "-m" "pytest" "tests")))))))
(propagated-inputs
(list python-jinxed python-six python-wcwidth))
(native-inputs