diff --git a/deps.edn b/deps.edn index c891086f..87b98012 100644 --- a/deps.edn +++ b/deps.edn @@ -174,7 +174,9 @@ prismatic/plumbing {:git/url "https://github.com/plumatic/plumbing", :git/sha "424bc704f2db422de34269c139a5494314b3a43b"} org.clj-commons/hickory {:git/url "https://github.com/clj-commons/hickory" - :git/sha "9385b6708ef35f161732d8464b3a3aa57dd79f30"}} + :git/sha "9385b6708ef35f161732d8464b3a3aa57dd79f30"} + com.potetm/fusebox {:git/url "https://github.com/potetm/fusebox" + :git/sha "b61df08b11e4960b5dea2ccfb4532a717c71cb2a"}} :classpath-overrides {org.clojure/clojure nil org.clojure/spec.alpha nil}} :clj-nvd diff --git a/test-resources/lib_tests/babashka/run_all_libtests.clj b/test-resources/lib_tests/babashka/run_all_libtests.clj index 20e4e11b..b9b70876 100644 --- a/test-resources/lib_tests/babashka/run_all_libtests.clj +++ b/test-resources/lib_tests/babashka/run_all_libtests.clj @@ -75,8 +75,6 @@ (doseq [p test-paths] (add-classpath (str (fs/file git-dir p))))) (when-not (and skip-windows (windows?)) - (prn :branch (current-branch)) - (prn (System/getenv)) (if (and flaky (#{"main" "master"} (current-branch))) (println "Skipping" tns "for main branch because it's marked flaky") (swap! test-nss into tns)))) diff --git a/test-resources/lib_tests/bb-tested-libs.edn b/test-resources/lib_tests/bb-tested-libs.edn index 1b32339f..87cf2480 100644 --- a/test-resources/lib_tests/bb-tested-libs.edn +++ b/test-resources/lib_tests/bb-tested-libs.edn @@ -201,4 +201,16 @@ hickory.test.render hickory.test.select hickory.test.zip]} - cheshire/cheshire {:git-url "https://github.com/dakrone/cheshire", :test-namespaces [cheshire.test.core], :manually-added true}} + cheshire/cheshire {:git-url "https://github.com/dakrone/cheshire", :test-namespaces [cheshire.test.core], :manually-added true} + com.potetm/fusebox {:git-url "https://github.com/potetm/fusebox" + :git-sha "b61df08b11e4960b5dea2ccfb4532a717c71cb2a" + :test-paths ["test"] + :test-namespaces [com.potetm.fusebox.bulkhead-test + com.potetm.fusebox.bulwark-test + com.potetm.fusebox.circuit-breaker-test + com.potetm.fusebox.fallback-test + com.potetm.fusebox.memoize-test + com.potetm.fusebox.rate-limit-test + com.potetm.fusebox.registry-test + com.potetm.fusebox.retry-test + com.potetm.fusebox.timeout-test]}}