Skip to content

Commit

Permalink
Exclude crates failing to build (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
lalitb committed May 15, 2024
1 parent 644f363 commit 1de8402
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ members = [
]
exclude = [
"opentelemetry-dynatrace",
"opentelemetry-datadog",
"opentelemetry-stackdriver",
"opentelemetry-zpages"
]
resolver = "2"

Expand Down
8 changes: 6 additions & 2 deletions scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ cargo test --all --all-features "$@" -- --test-threads=1

cargo test --manifest-path=opentelemetry-aws/Cargo.toml --all-features
cargo test --manifest-path=opentelemetry-contrib/Cargo.toml --all-features
cargo test --manifest-path=opentelemetry-datadog/Cargo.toml --all-features
cargo test --manifest-path=opentelemetry-stackdriver/Cargo.toml --all-features

#TODO enable below once datadog exporter is building fine
#cargo test --manifest-path=opentelemetry-datadog/Cargo.toml --all-features

#TODO enable below once stackdriver exporter is building fine
#cargo test --manifest-path=opentelemetry-stackdriver/Cargo.toml --all-features

cargo test --manifest-path=opentelemetry-user-events-logs/Cargo.toml --all-features
cargo test --manifest-path=opentelemetry-user-events-metrics/Cargo.toml --all-features
Expand Down

0 comments on commit 1de8402

Please sign in to comment.