File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
set -e
2
+
2
3
TEST_DIR=" ./opentelemetry-otlp/tests/integration_test/tests"
3
4
4
5
if [ -d " $TEST_DIR " ]; then
5
6
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
+
6
12
# 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"
8
14
9
15
# 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"
11
17
12
18
# 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"
14
20
15
21
# 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"
17
23
else
18
24
echo " Directory $TEST_DIR does not exist. Skipping tests."
19
25
exit 1
You can’t perform that action at this time.
0 commit comments