Skip to content

Commit c78170f

Browse files
committed
Temp: Push debugging info out of integration_tests script
1 parent 6904b97 commit c78170f

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

scripts/integration_tests.sh

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
set -e
2+
23
TEST_DIR="./opentelemetry-otlp/tests/integration_test/tests"
34

45
if [ -d "$TEST_DIR" ]; then
56
cd "$TEST_DIR"
7+
8+
# Debug
9+
cargo tree
10+
cat /home/runner/work/opentelemetry-rust/opentelemetry-rust/opentelemetry-sdk/src/resource/mod.rs
11+
612
# Run tests with the grpc-tonic feature
7-
cargo test --no-default-features --features "tonic-client" -- --ignored
13+
cargo test --no-default-features --features "tonic-client"
814

915
# Run tests with the reqwest-client feature
10-
cargo test --no-default-features --features "reqwest-client" -- --ignored
16+
cargo test --no-default-features --features "reqwest-client"
1117

1218
# TODO - Uncomment the following lines once the reqwest-blocking-client feature is working.
13-
# cargo test --no-default-features --features "reqwest-blocking-client" -- --ignored
19+
# cargo test --no-default-features --features "reqwest-blocking-client"
1420

1521
# Run tests with the hyper-client feature
16-
cargo test --no-default-features --features "hyper-client" -- --ignored
22+
cargo test --no-default-features --features "hyper-client"
1723
else
1824
echo "Directory $TEST_DIR does not exist. Skipping tests."
1925
exit 1

0 commit comments

Comments
 (0)