Coverage for crunch/django/app/enums.py: 100.00%

9 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2023-10-01 13:43 +0000

1from django.db import models 

2 

3 

4class Stage(models.IntegerChoices): 

5 SETUP = 1 

6 WORKFLOW = 2 

7 UPLOAD = 3 

8 

9 

10class State(models.IntegerChoices): 

11 START = 1 

12 SUCCESS = 2 

13 FAIL = 3 

14 

15