mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-pyodbc: Document the test situation.
* gnu/packages/databases.scm (python-pyodbc)[arguments]: Replace counterfactual comment with one that isn't. Add a custom 'check phase, which doesn't run.
This commit is contained in:
parent
f0fa2b25ba
commit
07edc13f04
1 changed files with 9 additions and 1 deletions
|
@ -3058,7 +3058,15 @@ for ODBC.")
|
||||||
(inputs
|
(inputs
|
||||||
(list unixodbc))
|
(list unixodbc))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ; no unit tests exist
|
;; XXX Tests fail with ‘Can't open lib 'SQL Server Native Client 10.0' :
|
||||||
|
;; file not found (0) (SQLDriverConnect)")’.
|
||||||
|
(list #:tests? #f
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "python3" "tests3/test.py")))))))
|
||||||
(home-page "https://github.com/mkleehammer/pyodbc")
|
(home-page "https://github.com/mkleehammer/pyodbc")
|
||||||
(synopsis "Python ODBC Library")
|
(synopsis "Python ODBC Library")
|
||||||
(description "@code{python-pyodbc} provides a Python DB-API driver
|
(description "@code{python-pyodbc} provides a Python DB-API driver
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue