(project: Project)
| 427 | |
| 428 | @pytest.fixture() |
| 429 | def segment(project: Project) -> Segment: |
| 430 | segment: Segment = Segment.objects.create(name="segment", project=project) |
| 431 | return segment |
| 432 | |
| 433 | |
| 434 | @pytest.fixture() |
nothing calls this directly
no test coverage detected
searching dependent graphs…