File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -19,18 +19,25 @@ if [ -d "$TEST_DIR" ]; then
19
19
echo Integration Tests: Reqwest Client
20
20
echo # ###
21
21
echo
22
- cargo test --no-default-features --features " reqwest-client" ," internal-logs"
22
+ # TODO: reqwest client is not supported with thread based processor and reader. Enable this test once it is supported.
23
+ # cargo test --no-default-features --features "reqwest-client","internal-logs"
23
24
24
- # TODO - Uncomment the following lines once the reqwest-blocking-client feature is working.
25
- # cargo test --no-default-features --features "reqwest-blocking-client"
25
+ # Run tests with the reqwest-client feature
26
+ echo
27
+ echo # ###
28
+ echo Integration Tests: Reqwest Blocking Client
29
+ echo # ###
30
+ echo
31
+ cargo test --no-default-features --features " reqwest-blocking-client"
26
32
27
33
# Run tests with the hyper-client feature
28
34
echo
29
35
echo # ###
30
36
echo Integration Tests: Hyper Client
31
37
echo # ###
32
38
echo
33
- cargo test --no-default-features --features " hyper-client" ," internal-logs"
39
+ # TODO: reqwest client is not supported with thread based processor and reader. Enable this test once it is supported.
40
+ # cargo test --no-default-features --features "hyper-client","internal-logs"
34
41
else
35
42
echo " Directory $TEST_DIR does not exist. Skipping tests."
36
43
exit 1
You can’t perform that action at this time.
0 commit comments