# What this PR does See [Slack discussion](https://raintank-corp.slack.com/archives/C06K1MQ07GS/p1732110700877869) for more context ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] Added the relevant release notes label (see labels prefixed w/ `release:`). These labels dictate how your PR will show up in the autogenerated release notes.
8 lines
189 B
Python
8 lines
189 B
Python
import factory
|
|
|
|
from apps.heartbeat.models import IntegrationHeartBeat
|
|
|
|
|
|
class IntegrationHeartBeatFactory(factory.DjangoModelFactory):
|
|
class Meta:
|
|
model = IntegrationHeartBeat
|