Skip to content

Commit 44cda74

Browse files
committed
workflows: Enable end-to-end tests in CI
1 parent 4de34ce commit 44cda74

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Test
1010
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
1111
with:
12-
linux_pre_build_command: apt-get update && apt-get install -y locales locales-all libsqlite3-dev
12+
linux_pre_build_command: apt-get update && apt-get install -y locales locales-all libsqlite3-dev docker
1313
enable_windows_checks: false
1414
soundness:
1515
name: Soundness

Tests/SwiftSDKGeneratorTests/EndToEndTests.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,7 @@ final class RepeatedBuildTests: XCTestCase {
121121
private let logger = Logger(label: "swift-sdk-generator")
122122

123123
func testRepeatedSDKBuilds() async throws {
124-
if ProcessInfo.processInfo.environment.keys.contains("JENKINS_URL")
125-
|| ProcessInfo.processInfo.environment.keys.contains("GITHUB_ACTIONS")
126-
{
124+
if ProcessInfo.processInfo.environment.keys.contains("JENKINS_URL") {
127125
throw XCTSkip(
128126
"EndToEnd tests cannot currently run in CI: https://github.com/swiftlang/swift-sdk-generator/issues/145"
129127
)

0 commit comments

Comments
 (0)