diff options
Diffstat (limited to 'guix.scm')
| -rw-r--r-- | guix.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix.scm b/guix.scm index 905f1ac..b27bc8c 100644 --- a/guix.scm +++ b/guix.scm @@ -364,7 +364,8 @@ access to Gemini models.") (("\\./minipubmed") pubmed))))) (replace 'check (lambda _ - (invoke "python" "-m" "unittest" "discover" "-s" "tests" "-v"))) + ;; test_network_* files need internet, skip them + (invoke "python" "-m" "unittest" "tests.test_hello" "-v"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) |
