Skip to content

Commit 3abf9c8

Browse files
committedOct 26, 2022
Add some more tests to ignore list
clj-http options that interop with Apache-specific stuff can't be tested
1 parent 718fcce commit 3abf9c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎test/aleph/http/clj_http/core_test.clj

+4-4
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@
795795
(is (= http-context context-for-request))
796796
(is (= request-config (.getRequestConfig context-for-request)))))))
797797

798-
(deftest ^:integration test-custom-http-builder-fns
798+
(deftest ^:integration ^:ignore test-custom-http-builder-fns
799799
(run-server)
800800
(let [resp (client/get (localhost "/get")
801801
{:headers {"add-headers" "true"}
@@ -884,7 +884,7 @@
884884
(is false "should have thrown a timeout exception")
885885
(catch TimeoutException te)))
886886

887-
(deftest ^:integration test-reusable-http-client
887+
(deftest ^:integration ^:ignore test-reusable-http-client
888888
(run-server)
889889
(let [cm (conn/make-reuseable-async-conn-manager {})
890890
hc (core/build-async-http-client {} cm)]
@@ -942,7 +942,7 @@
942942
(is (= @validated true))))
943943

944944

945-
(deftest t-cache-config
945+
(deftest ^:ignore t-cache-config
946946
(let [cc (core/build-cache-config
947947
{:cache-config {:allow-303-caching true
948948
:asynchronous-worker-idle-lifetime-secs 10
@@ -971,7 +971,7 @@
971971
(is (= false (.isSharedCache cc)))
972972
(is (= true (.isWeakETagOnPutDeleteAllowed cc)))))
973973

974-
(deftest ^:integration t-client-caching
974+
(deftest ^:integration ^:ignore t-client-caching
975975
(run-server)
976976
(let [cm (conn/make-reusable-conn-manager {})
977977
r1 (client/get (localhost "/get")

0 commit comments

Comments
 (0)
Please sign in to comment.