Skip to content

Commit b6e756d

Browse files
committed
Don't run new test on Linux
1 parent a8e38f9 commit b6e756d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
### 2.0.0
99
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/1.11.0...2.0.0)
1010

11+
__New features__
12+
- Added option to delete Parse items from Keychain when the app is running for the first time ([#254](https://github.com/parse-community/Parse-Swift/pull/254)), thanks to [Corey Baker](https://github.com/cbaker6).
13+
1114
__Improvements__
1215
- (Breaking Change) ParseObject's now conform to Identifiable and can be used directly with SwiftUI without additonal properties needed. Drops support for iOS 12, tvOS 12, watchOS 5, and macOS 10.13/14 ([#254](https://github.com/parse-community/Parse-Swift/pull/254)), thanks to [Corey Baker](https://github.com/cbaker6).
1316

Tests/ParseSwiftTests/InitializeSDKTests.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ class InitializeSDKTests: XCTestCase {
5151
try ParseStorage.shared.deleteAll()
5252
}
5353

54+
#if !os(Linux) && !os(Android)
5455
func testDeleteKeychainOnFirstRun() throws {
5556
let memory = InMemoryKeyValueStore()
5657
ParseStorage.shared.use(memory)
@@ -100,6 +101,7 @@ class InitializeSDKTests: XCTestCase {
100101
}
101102
XCTAssertEqual(firstRun4, ParseConstants.bundlePrefix)
102103
}
104+
#endif
103105

104106
func testCreateParseInstallationOnInit() {
105107
guard let url = URL(string: "http://localhost:1337/1") else {

0 commit comments

Comments
 (0)