gnu: python-rad: Enable tests.
* gnu/packages/astronomy.scm (python-rad) [arguments] <#:test-flags>: Enable most of the tests, ignore the one introducing cycle. [native-inputs]: Add python-pytest. Change-Id: Ice4bc5eb2dcaae92c44466ea1eb932544a502927
This commit is contained in:
parent
fb33458ca7
commit
95ea559408
1 changed files with 6 additions and 3 deletions
|
@ -4414,10 +4414,13 @@ default) to world coordinates.")
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
;; XXX: Tests introduce dependencies cycle, breaking it by disable them.
|
;; Ignore tests requiring python-crds to break cycle:
|
||||||
;; python-rad -> python-roman-datamodels -> python-crds -> python-rad
|
;; python-rad -> python-roman-datamodels -> python-crds -> python-rad
|
||||||
#:tests? #f))
|
#:test-flags #~(list "--ignore=tests/test_schemas.py")))
|
||||||
(native-inputs (list python-semantic-version python-setuptools-scm))
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-semantic-version
|
||||||
|
python-setuptools-scm))
|
||||||
(propagated-inputs (list python-asdf python-asdf-astropy))
|
(propagated-inputs (list python-asdf python-asdf-astropy))
|
||||||
(home-page "https://github.com/spacetelescope/rad")
|
(home-page "https://github.com/spacetelescope/rad")
|
||||||
(synopsis "Roman Attribute Dictionary")
|
(synopsis "Roman Attribute Dictionary")
|
||||||
|
|
Reference in a new issue