Skip to content

Commit

Permalink
Merge pull request #629 from rechsteiner/ci
Browse files Browse the repository at this point in the history
Use Xcode 13.2 in CircleCI
  • Loading branch information
rechsteiner authored Jan 23, 2022
2 parents a8e4ae1 + 2104df8 commit abcb2b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ version: 2
jobs:
build-and-test:
macos:
xcode: "11.3.0"
xcode: "13.2.1"
steps:
- checkout
- run:
name: Run Unit Tests
command: xcodebuild -project Parchment.xcodeproj -scheme "Parchment" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 11,OS=13.3' test
command: xcodebuild -project Parchment.xcodeproj -scheme "Parchment" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 13 Pro,OS=15.2' test
- run:
name: Run UI Tests
command: xcodebuild -project Parchment.xcodeproj -scheme "ParchmentUITests" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 11,OS=13.3' test
command: xcodebuild -project Parchment.xcodeproj -scheme "ParchmentUITests" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 13 Pro,OS=15.2' test


workflows:
Expand Down
2 changes: 0 additions & 2 deletions ParchmentTests/PagingViewTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ final class PagingViewTests: XCTestCase {
func testMenuBackgroundColor() {
pagingView.configure()

XCTAssertEqual(collectionView.backgroundColor, .white)

var options = PagingOptions()
options.menuBackgroundColor = .green
pagingView.options = options
Expand Down

0 comments on commit abcb2b6

Please sign in to comment.