File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 11set -e
2+
23TEST_DIR=" ./opentelemetry-otlp/tests/integration_test/tests"
34
45if [ -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"
1723else
1824 echo " Directory $TEST_DIR does not exist. Skipping tests."
1925 exit 1
You can’t perform that action at this time.
0 commit comments