From 18287ef62967680bb7d39c8e0d5058cf10cef9d6 Mon Sep 17 00:00:00 2001 From: Tim Oliver Date: Mon, 17 Apr 2023 20:41:49 -0700 Subject: [PATCH] Omit the test suite from code coverage stats Summary: I realized halfway through this exercise that the code in the unit tests themselves was also getting counted in the final code coverage stats, and that this was artificially inflating the final number by a pretty big amount. This diff omits the test suite from the coverage stats. Reviewed By: candance Differential Revision: D45022827 fbshipit-source-id: 45a043e70bcc053e07dbeefaa2e3da8a10a982db --- .slather.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.slather.yml b/.slather.yml index 19c7cdccc..884df4694 100644 --- a/.slather.yml +++ b/.slather.yml @@ -5,4 +5,5 @@ workspace: IGListKit.xcworkspace scheme: IGListKit source_directory: Source ignore: - - "../**/*/Xcode*" + - ../**/*/Xcode* + - Tests/*