Coverage for src/ensae_teaching_cs/automation_students/repository_exception.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.1.0, created at 2023-04-28 06:23 +0200

1""" 

2@file 

3@brief Some automation helpers to grab mails from students about projects. 

4""" 

5 

6 

7class RegexRepositoryException(Exception): 

8 """ 

9 raised when it is impossible to get information from the repository 

10 """ 

11 pass 

12 

13 

14class TooManyProjectsException(Exception): 

15 """ 

16 raised when a group has too many projects 

17 """ 

18 pass