0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-29 03:04:16 +01:00
posthog/ee/clickhouse/test/test_calculate_event_property_usage.py
Tim Glaser 5887bd2143
test: Speed up backend tests (#9289)
* 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
2022-04-27 13:38:39 +01:00

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