diff options
author | Arun Isaac | 2025-07-07 12:17:28 +0100 |
---|---|---|
committer | Arun Isaac | 2025-07-07 12:36:41 +0100 |
commit | f5a245d1dc7e7680a979c52ec77cdc3e54ccea4a (patch) | |
tree | fe2040ab2ce6dc93d023a41bcc2f87e8548d32e9 /guix.scm | |
parent | 7db192b8e9f5402769deb8f56112e01171d29283 (diff) | |
download | pyhegp-f5a245d1dc7e7680a979c52ec77cdc3e54ccea4a.tar.gz pyhegp-f5a245d1dc7e7680a979c52ec77cdc3e54ccea4a.tar.lz pyhegp-f5a245d1dc7e7680a979c52ec77cdc3e54ccea4a.zip |
Add tests.
* test_pyhegp.py: New file.
* README.md (Run tests): New section.
* guix.scm: Import python-hypothesis from (gnu packages check).
(python-pyhegp)[arguments]: Enable tests.
[native-inputs]: Add python-hypothesis.
Diffstat (limited to 'guix.scm')
-rw-r--r-- | guix.scm | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -16,7 +16,7 @@ ;;; You should have received a copy of the GNU General Public License ;;; along with pyhegp. If not, see <https://www.gnu.org/licenses/>. -(use-modules ((gnu packages check) #:select (python-pytest)) +(use-modules ((gnu packages check) #:select (python-hypothesis python-pytest)) ((gnu packages python-build) #:select (python-flit-core)) ((gnu packages python-science) #:select (python-scipy)) ((gnu packages python-xyz) #:select (python-click python-numpy)) @@ -36,10 +36,9 @@ #:recursive? #t #:select? (git-predicate (current-source-directory)))) (build-system pyproject-build-system) - (arguments - (list #:tests? #f)) (native-inputs (list python-flit-core + python-hypothesis python-pytest)) (propagated-inputs (list python-click |