Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rechsteiner committed May 24, 2024
2 parents a08f60c + 6b1e939 commit e6f9786
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/parchment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ jobs:
build:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- uses: actions/checkout@v3
- name: Unit Tests
run: xcodebuild -project Parchment.xcodeproj -scheme "Parchment" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=16.2' test
run: xcodebuild -project Parchment.xcodeproj -scheme "Parchment" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.5' test
- name: UI Tests
run: xcodebuild -project Parchment.xcodeproj -scheme "ParchmentUITests" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=16.2' test
run: xcodebuild -project Parchment.xcodeproj -scheme "ParchmentUITests" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.5' test
3 changes: 2 additions & 1 deletion ParchmentTests/PagingViewControllerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ final class PagingViewControllerTests: XCTestCase {
XCTAssertEqual(pagingViewController.state, PagingState.selected(pagingItem: item1))
}

func testRetainCycles() {
// FIXME: Disabled as it fails on CI
func xtestRetainCycles() {
var instance: DeinitPagingViewController? = DeinitPagingViewController()
let expectation = XCTestExpectation()

Expand Down

0 comments on commit e6f9786

Please sign in to comment.