Skip to content

Commit 1dd880c

Browse files
committed
make it clear what's going on
1 parent ab7817b commit 1dd880c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

scripts/integration_tests.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,30 @@ if [ -d "$TEST_DIR" ]; then
66
cd "$TEST_DIR"
77

88
# Run tests with the grpc-tonic feature
9+
echo
10+
echo ####
11+
echo Integration Tests: gRPC Tonic Client
12+
echo ####
13+
echo
914
cargo test --no-default-features --features "tonic-client","internal-logs"
1015

1116
# Run tests with the reqwest-client feature
17+
echo
18+
echo ####
19+
echo Integration Tests: Reqwest Client
20+
echo ####
21+
echo
1222
cargo test --no-default-features --features "reqwest-client","internal-logs"
1323

1424
# TODO - Uncomment the following lines once the reqwest-blocking-client feature is working.
1525
# cargo test --no-default-features --features "reqwest-blocking-client"
1626

1727
# Run tests with the hyper-client feature
28+
echo
29+
echo ####
30+
echo Integration Tests: Hyper Client
31+
echo ####
32+
echo
1833
cargo test --no-default-features --features "hyper-client","internal-logs"
1934
else
2035
echo "Directory $TEST_DIR does not exist. Skipping tests."

0 commit comments

Comments
 (0)