Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0
4.1
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ matrix:
include:
- os: osx
language: objective-c
osx_image: xcode9
osx_image: xcode9.3
before_install:
- gem install xcpretty
script:
Expand Down
9 changes: 0 additions & 9 deletions Sources/LiteSupport/TestRunner.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@ import Rainbow
import ShellOut
import Dispatch

#if os(Linux)
/// HACK: This is needed because on macOS, ObjCBool is a distinct type
/// from Bool. On Linux, however, it is a typealias.
extension ObjCBool {
/// Converts the ObjCBool value to a Swift Bool.
var boolValue: Bool { return self }
}
#endif

/// Specifies how to parallelize test runs.
public enum ParallelismLevel {
/// Parallelize over an explicit number of cores.
Expand Down