Unverified Commit d7a3eea7 authored by Zelda Hessler's avatar Zelda Hessler Committed by GitHub
Browse files

integration tests cleanup (#880)

* add: test-util feature to s3 integration test Cargo.toml

* add: test-util feature to integration tests missing it
remove: vestigial src/lib.rs files
sort: integration test deps

* fix: copy-paste error in Cargo.toml

* fix: copy-paste error in Cargo.toml

* verify: integration tests run without lib files
fix: outdated dependency path name
remove: extra space in Cargo.toml

* update: Credential creation method in integration test
parent e23bdc80
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -7,15 +7,13 @@ edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
[dev-dependencies]
aws-http = { path = "../../build/aws-sdk/sdk/aws-http"}
aws-hyper = { path = "../../build/aws-sdk/sdk/aws-hyper"}
aws-sdk-glacier = { path = "../../build/aws-sdk/sdk/glacier" }
aws-smithy-client = { path = "../../build/aws-sdk/sdk/aws-smithy-client", features = ["test-util"] }
aws-smithy-protocol-test = { path = "../../build/aws-sdk/sdk/aws-smithy-protocol-test"}
tracing-subscriber = "0.2.18"

[dev-dependencies]
tokio  = { version = "1", features = ["full"]}
http = "0.2.3"
bytes = "1"
aws-hyper = { path = "../../build/aws-sdk/sdk/aws-hyper"}
aws-http = { path = "../../build/aws-sdk/sdk/aws-http"}
http = "0.2.3"
tokio = { version = "1", features = ["full", "test-util"]}
tracing-subscriber = "0.2.18"
+0 −4
Original line number Diff line number Diff line
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */
+6 −8
Original line number Diff line number Diff line
@@ -7,16 +7,14 @@ edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
[dev-dependencies]
aws-endpoint = { path = "../../build/aws-sdk/sdk/aws-endpoint" }
aws-http = { path = "../../build/aws-sdk/sdk/aws-http"}
aws-hyper = { path = "../../build/aws-sdk/sdk/aws-hyper"}
aws-sdk-iam = { path = "../../build/aws-sdk/sdk/iam" }
aws-smithy-client = { path = "../../build/aws-sdk/sdk/aws-smithy-client", features = ["test-util"] }
aws-smithy-http = { path = "../../build/aws-sdk/sdk/aws-smithy-http" }
tracing-subscriber = "0.2.18"

[dev-dependencies]
tokio  = { version = "1", features = ["full"]}
http = "0.2.3"
bytes = "1"
aws-hyper = { path = "../../build/aws-sdk/sdk/aws-hyper"}
aws-http = { path = "../../build/aws-sdk/sdk/aws-http"}
http = "0.2.3"
tokio = { version = "1", features = ["full", "test-util"]}
tracing-subscriber = "0.2.18"
+0 −4
Original line number Diff line number Diff line
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */
+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
[dev-dependencies]
aws-http = { path = "../../build/aws-sdk/sdk/aws-http" }
aws-hyper = { path = "../../build/aws-sdk/sdk/aws-hyper" }
aws-sdk-kms = { path = "../../build/aws-sdk/sdk/kms" }
@@ -16,5 +16,5 @@ aws-smithy-http = { path = "../../build/aws-sdk/sdk/aws-smithy-http" }
aws-smithy-types = { path = "../../build/aws-sdk/sdk/aws-smithy-types" }
bytes = "1"
http = "0.2.3"
tokio = { version = "1", features = ["full"]}
tokio = { version = "1", features = ["full", "test-util"]}
tracing-subscriber = "0.2.16"
Loading