From 1e5c28f36b0fd2d5ac1683c88d48e3d7c243e993 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 22:18:22 +0200 Subject: Adding upstream version 0.1.28. Signed-off-by: Daniel Baumann --- .../d_267b6307937f1878___init___py.html | 115 +++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 coverage-report/d_267b6307937f1878___init___py.html (limited to 'coverage-report/d_267b6307937f1878___init___py.html') diff --git a/coverage-report/d_267b6307937f1878___init___py.html b/coverage-report/d_267b6307937f1878___init___py.html new file mode 100644 index 0000000..25e8dea --- /dev/null +++ b/coverage-report/d_267b6307937f1878___init___py.html @@ -0,0 +1,115 @@ + + + + + Coverage for src/debputy/__init__.py: 78% + + + + + +
+
+

+ Coverage for src/debputy/__init__.py: + 78% +

+ +

+ 7 statements   + + + + +

+

+ « prev     + ^ index     + » next +       + coverage.py v7.2.7, + created at 2024-04-07 12:14 +0200 +

+ +
+
+
+

1import pathlib 

+

2 

+

3from .version import IS_RELEASE_BUILD, __version__ 

+

4 

+

5# Replaced during install; must be a single line 

+

6# fmt: off 

+

7DEBPUTY_ROOT_DIR = pathlib.Path(__file__).parent.parent.parent 

+

8DEBPUTY_PLUGIN_ROOT_DIR = pathlib.Path(__file__).parent.parent.parent 

+

9# fmt: on 

+

10 

+

11if IS_RELEASE_BUILD: 11 ↛ 12line 11 didn't jump to line 12

+

12 DEBPUTY_DOC_ROOT_DIR = ( 

+

13 f"https://salsa.debian.org/debian/debputy/-/blob/debian/{__version__}" 

+

14 ) 

+

15else: 

+

16 DEBPUTY_DOC_ROOT_DIR = "https://salsa.debian.org/debian/debputy/-/blob/main" 

+
+ + + -- cgit v1.2.3