You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test: Update GHA jobs to support new Swift Testing
Split job into macOS and Ubuntu specific jobs
Add concurrency setting to GHA so only one per branch will run at a time
Update GH actions to their latest versions
Replace setup-swift action with xcode-select-version-action and update
to Xcode 16 on macOS
Build tests when building package
Use --skip testGetPullRequestsPerformance to not run long running tests
Set TEST_GITHUB_TOKEN environment variable at the swift test level
Update test-reporting path to new swift-testing results file path
Add workaround for test-reporting
issue [1169](actions/checkout#1169)
Switch swift-testing package to use newly released v0.12.0
Update missed Swift Testing migration of XCTSkip to @suite(.disabled())
in EndpointTests
Change testGetPullRequestsPerformance timeout to 3 minutes
TODO: Collapse macOS and Ubuntu jobs back into one
Copy file name to clipboardExpand all lines: Tests/GitHubStatsCoreTests/EndpointTests.swift
+2-9Lines changed: 2 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -10,19 +10,12 @@ import Testing
10
10
import Foundation
11
11
@testableimport GitHubStatsCore
12
12
13
-
@Suite("EndpointTests tests")
13
+
@Suite("EndpointTests tests",.disabled(if:ProcessInfo.processInfo.environment[GitHubConstants.gitHubTokenEnvironmentVariable]==nil,"GitHub API token not found in environment variables"))
0 commit comments