Coverage for src/code_beatrix/scratchs/__init__.py: 100%

10 statements  

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

1""" 

2@file 

3@brief shortcuts for scratch 

4""" 

5 

6#from .example_echiquier import check as check1 

7 

8from .example_echiquier import check_echiquier 

9from .example_tri import check_tri 

10from .example_pyramide import check_pyramide 

11from .example_chute import check_chute 

12 

13 

14def check(): 

15 """ 

16 run checking functions 

17 """ 

18 check_echiquier() 

19 check_tri() 

20 check_pyramide() 

21 check_chute() 

22 return True