Skip to content

Commit ae06d59

Browse files
authored
cleanup unused code (#498)
1 parent 8f10a6b commit ae06d59

File tree

4 files changed

+0
-69
lines changed

4 files changed

+0
-69
lines changed

Package.swift

-17
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ let package = Package(
1010
// plugin to package the lambda, creating an archive that can be uploaded to AWS
1111
// requires Linux or at least macOS v15
1212
.plugin(name: "AWSLambdaPackager", targets: ["AWSLambdaPackager"]),
13-
// for testing only
14-
.library(name: "AWSLambdaTesting", targets: ["AWSLambdaTesting"]),
1513
],
1614
traits: [
1715
"FoundationJSONSupport",
@@ -71,21 +69,6 @@ let package = Package(
7169
.product(name: "NIOFoundationCompat", package: "swift-nio"),
7270
]
7371
),
74-
// testing helper
75-
.target(
76-
name: "AWSLambdaTesting",
77-
dependencies: [
78-
.byName(name: "AWSLambdaRuntime"),
79-
.product(name: "NIOCore", package: "swift-nio"),
80-
.product(name: "NIOPosix", package: "swift-nio"),
81-
]
82-
),
83-
.testTarget(
84-
name: "AWSLambdaTestingTests",
85-
dependencies: [
86-
.byName(name: "AWSLambdaTesting")
87-
]
88-
),
8972
// for perf testing
9073
.executableTarget(
9174
name: "MockServer",

[email protected]

-17
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ let package = Package(
1010
// plugin to package the lambda, creating an archive that can be uploaded to AWS
1111
// requires Linux or at least macOS v15
1212
.plugin(name: "AWSLambdaPackager", targets: ["AWSLambdaPackager"]),
13-
// for testing only
14-
.library(name: "AWSLambdaTesting", targets: ["AWSLambdaTesting"]),
1513
],
1614
dependencies: [
1715
.package(url: "https://github.com/apple/swift-nio.git", from: "2.81.0"),
@@ -60,21 +58,6 @@ let package = Package(
6058
.product(name: "NIOFoundationCompat", package: "swift-nio"),
6159
]
6260
),
63-
// testing helper
64-
.target(
65-
name: "AWSLambdaTesting",
66-
dependencies: [
67-
.byName(name: "AWSLambdaRuntime"),
68-
.product(name: "NIOCore", package: "swift-nio"),
69-
.product(name: "NIOPosix", package: "swift-nio"),
70-
]
71-
),
72-
.testTarget(
73-
name: "AWSLambdaTestingTests",
74-
dependencies: [
75-
.byName(name: "AWSLambdaTesting")
76-
]
77-
),
7861
// for perf testing
7962
.executableTarget(
8063
name: "MockServer",

Sources/AWSLambdaTesting/LambdaTestRuntime.swift

-17
This file was deleted.

Tests/AWSLambdaTestingTests/LambdaTestRuntimeTests.swift

-18
This file was deleted.

0 commit comments

Comments
 (0)