Skip to content

Commit

Permalink
Added watchOS build exclusion for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed Jan 19, 2021
1 parent b4535d4 commit 0e33716
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Tests/TextFileKitTests/TextFile CSV Tests.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
//
// TextFile CSV Tests.swift
// TextFileKit
//
// Created by Steffan Andrews on 2020-08-26.
// Copyright © 2020 Steffan Andrews. All rights reserved.
//

#if !os(watchOS)

import XCTest
@testable import TextFileKit

Expand Down Expand Up @@ -128,3 +134,5 @@ extension CSV_Tests {
}

}

#endif
8 changes: 8 additions & 0 deletions Tests/TextFileKitTests/TextFile TSV Tests.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
//
// TextFile TSV Tests.swift
// TextFileKit
//
// Created by Steffan Andrews on 2020-08-26.
// Copyright © 2020 Steffan Andrews. All rights reserved.
//

#if !os(watchOS)

import XCTest
@testable import TextFileKit

Expand Down Expand Up @@ -128,3 +134,5 @@ extension TSV_Tests {
}

}

#endif

0 comments on commit 0e33716

Please sign in to comment.