Coverage for python3_module_template/subproject2/exclude_from_code_coverage.py: 0%

3 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-07-03 02:15 +0200

1""" 

2@file 

3@brief This file is excluded from the code coverage while running unit test. 

4 

5See `setup.py <https://github.com/sdpython/python3_module_template/blob/master/setup.py>`_ 

6to see how to configurate this option. 

7""" 

8 

9 

10class NotImplementedClass: 

11 """ 

12 this class should be excluded from the code coverage 

13 """ 

14 

15 def __init__(self): 

16 """ 

17 never tested 

18 """ 

19 self.x = 3