From 5ea3c7ddad66b21de879f870e3f6687da3cf8328 Mon Sep 17 00:00:00 2001 From: Doug Latornell Date: Thu, 9 Jan 2025 13:24:35 -0800 Subject: [PATCH] Exclude version string from coverage (#125) Added a pragma directive to the version string to exclude it from test coverage metrics. This ensures that changes to the version number do not affect code coverage reports. --- SalishSeaTools/salishsea_tools/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SalishSeaTools/salishsea_tools/__about__.py b/SalishSeaTools/salishsea_tools/__about__.py index 7e2d552c..b2be29e0 100644 --- a/SalishSeaTools/salishsea_tools/__about__.py +++ b/SalishSeaTools/salishsea_tools/__about__.py @@ -16,4 +16,4 @@ # SPDX-License-Identifier: Apache-2.0 -__version__ = "25.1.dev0" +__version__ = "25.1.dev0" # pragma: no cover