From 0e337166fa1b142b6652eacdd17d543d1f547eb6 Mon Sep 17 00:00:00 2001 From: Steffan Andrews Date: Tue, 19 Jan 2021 00:00:33 -0800 Subject: [PATCH] Added watchOS build exclusion for unit tests --- Tests/TextFileKitTests/TextFile CSV Tests.swift | 8 ++++++++ Tests/TextFileKitTests/TextFile TSV Tests.swift | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/Tests/TextFileKitTests/TextFile CSV Tests.swift b/Tests/TextFileKitTests/TextFile CSV Tests.swift index ff58eab..c280979 100644 --- a/Tests/TextFileKitTests/TextFile CSV Tests.swift +++ b/Tests/TextFileKitTests/TextFile CSV Tests.swift @@ -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 @@ -128,3 +134,5 @@ extension CSV_Tests { } } + +#endif diff --git a/Tests/TextFileKitTests/TextFile TSV Tests.swift b/Tests/TextFileKitTests/TextFile TSV Tests.swift index db26f5c..8531044 100644 --- a/Tests/TextFileKitTests/TextFile TSV Tests.swift +++ b/Tests/TextFileKitTests/TextFile TSV Tests.swift @@ -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 @@ -128,3 +134,5 @@ extension TSV_Tests { } } + +#endif