Skip to content

Commit

Permalink
Exclude the new tests for the SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
Vkt0r committed Apr 24, 2019
1 parent 78202a1 commit 161488c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
25 changes: 22 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,27 @@ let package = Package(
dependencies: [],

targets: [
.target(name: "Swifter", dependencies: [], path: "XCode/Sources"),
.target(name: "Example", dependencies: ["Swifter"], path: "Example"),
.testTarget(name: "SwifterTests", dependencies: ["Swifter"], path: "XCode/Tests")
.target(
name: "Swifter",
dependencies: [],
path: "XCode/Sources"
),

.target(
name: "Example",
dependencies: [
"Swifter"
],
path: "Example"),

.testTarget(
name: "SwifterTests",
dependencies: [
"Swifter"
],
path: "XCode/Tests",
exclude: [
"ServerThreadingTests.swift"
])
]
)
10 changes: 0 additions & 10 deletions XCode/Tests/XCTestManifests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,6 @@ extension MimeTypeTests {
]
}

extension ServerThreadingTests {
// DO NOT MODIFY: This is autogenerated, use:
// `swift test --generate-linuxmain`
// to regenerate.
static let __allTests__ServerThreadingTests = [
("testShouldHandleTheSameRequestConcurrently", testShouldHandleTheSameRequestConcurrently),
("testShouldHandleTheSameRequestWithDifferentTimeIntervals", testShouldHandleTheSameRequestWithDifferentTimeIntervals),
]
}

extension SwifterTestsHttpParser {
// DO NOT MODIFY: This is autogenerated, use:
// `swift test --generate-linuxmain`
Expand Down

0 comments on commit 161488c

Please sign in to comment.