mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-29 03:04:16 +01:00
5887bd2143
* Durations * patch sleep * BULK * SPEED UP EVERYTHING * fiiix * more tests * morrr * fix test * Don't create demo data every time * fix * fix * Affix * fix * fix * fix * fix * fix * More speed * fix
10 lines
356 B
Python
10 lines
356 B
Python
from ee.clickhouse.util import ClickhouseTestMixin
|
|
from posthog.tasks.test.test_calculate_event_property_usage import calculate_event_property_usage_test_factory
|
|
from posthog.test.base import _create_event
|
|
|
|
|
|
class CalculateEventPropertyUsage(
|
|
ClickhouseTestMixin, calculate_event_property_usage_test_factory(_create_event), # type: ignore
|
|
):
|
|
pass
|