diff options
author | jgart <[email protected]> | 2024-07-11 15:41:20 -0500 |
---|---|---|
committer | jgart <[email protected]> | 2024-07-11 15:45:59 -0500 |
commit | b06e8e1f6796391335a59efccefe110369c9632b (patch) | |
tree | f61c507428051be9e6096515a5c9b6f9dd32d230 | |
parent | 91a773a65e2918519d2fb03f5d2726bee08d6186 (diff) |
gnu: python-sacn: Enable tests.
* gnu/packages/python-xyz.scm (python-sacn) [arguments]: Enable tests.
Change-Id: I6817270eca0c19bc786aa77460759f32d47a2948
-rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index de6bd260ad..2618c2078d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24701,6 +24701,13 @@ manipulation, or @code{stdout}.") (sha256 (base32 "02pqfwwx83lgb8nj9p0s6vyi1s7wjgbx9k0bzlyz8qapszzdsr37")))) (build-system python-build-system) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-vv"))))))) (native-inputs (list python-pytest)) (home-page "https://github.com/Hundemeier/sacn") (synopsis |