diff options
| -rw-r--r-- | genenetwork-development.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index d79a2ba..24176c0 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -429,6 +429,18 @@ genenetwork3 source from the latest commit of @var{project}." (run (gn-integration-tests-gexp config (list "pytest" "-m" "gn3 and smoke" "-v"))) + (trigger? #f) + (after (with-imported-modules '((guix build utils)) + #~(begin + (use-modules (guix build utils)) + (when (string=? (getenv "RESULT") "success") + (invoke #$(file-append laminar "/bin/laminarc") + "queue" "gn3-auth-flow-tests")))))) + (forge-laminar-job + (name "gn3-auth-flow-tests") + (run (gn-integration-tests-gexp + config + (list "pytest" "-m" "gn3 and auth_flow" "-v"))) (trigger? #f)))) (ci-jobs-trigger 'webhook)) (forge-project |
