Compare commits

...

5 commits

Author SHA1 Message Date
Michiel Borkent
65abe62ee1 sci, but not yet done 2025-04-22 20:11:17 +02:00
Michiel Borkent
e479b17181 disable rate limit test 2025-04-20 13:15:08 +02:00
Michiel Borkent
fb3f8d9b21 disable timeout tests 2025-04-19 23:20:04 +02:00
Michiel Borkent
be1c20e271 Bump fusebox 2025-04-19 23:00:11 +02:00
Michiel Borkent
d4d1835d1d fusebox tests 2025-04-19 20:20:54 +02:00
5 changed files with 20 additions and 6 deletions

View file

@ -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 "2f42391868c82c193628bec8922f8735ae3cac66"}}
:classpath-overrides {org.clojure/clojure nil
org.clojure/spec.alpha nil}}
:clj-nvd

View file

@ -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 "2f42391868c82c193628bec8922f8735ae3cac66"}}
:classpath-overrides {org.clojure/clojure nil
org.clojure/spec.alpha nil}}
:clj-nvd

2
sci

@ -1 +1 @@
Subproject commit bb544b70ecdf3574bb7600f9203b08041e9d50d0
Subproject commit eba23cb4983e2f30d1fadb5cd043ffe496353982

View file

@ -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))))

View file

@ -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 "2f42391868c82c193628bec8922f8735ae3cac66"
: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]}}