Coverage for src/code_beatrix/scratchs/example_chute/__init__.py: 83%

6 statements  

« prev     ^ index     » next       coverage.py v7.1.0, created at 2023-04-29 13:45 +0200

1""" 

2@file 

3@brief basic checking 

4""" 

5import os 

6 

7 

8def check_chute(): 

9 """ 

10 basic checkings 

11 """ 

12 dirname = os.path.dirname(__file__) 

13 f0 = os.path.join(dirname, "chute.sb2") 

14 if not os.path.exists(f0): 

15 raise FileNotFoundError(f0)