From 56c8d7f2291d497f6c9963454166476d223eda02 Mon Sep 17 00:00:00 2001 From: James Greenhill Date: Wed, 19 Jun 2024 00:52:32 +0100 Subject: [PATCH] feat(perf): bring back perf benchmarking --- pyproject.toml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cb19ccadb8178..e3e5fb8a2dac9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,5 @@ [project] +name = "posthog" requires-python = ">=3.10" [tool.black] @@ -69,26 +70,21 @@ max-complexity = 10 "./posthog/management/commands/migrate_elementgroup.py" = ["T201"] "./posthog/models/plugin.py" = ["T201"] "./docker-compose-config.py" = ["T201"] -"./posthog/management/commands/backfill_persons_and_groups_on_events.py" = ["T201"] +"./posthog/management/commands/backfill_persons_and_groups_on_events.py" = [ + "T201", +] "./posthog/management/commands/generate_demo_data.py" = ["T201"] "./posthog/apps.py" = ["T201"] "./posthog/management/commands/partition.py" = ["T201"] "./posthog/management/commands/migrate_clickhouse.py" = ["T201"] "./posthog/email.py" = ["T201"] -"./posthog/hogql/grammar/HogQLParser.py" = [ - "F401", - "F841", - "E711", -] +"./posthog/hogql/grammar/HogQLParser.py" = ["F401", "F841", "E711"] "./posthog/celery.py" = ["T201"] "./posthog/hogql/grammar/HogQLLexer.py" = ["F401"] "./posthog/utils.py" = ["T201"] "./posthog/management/commands/sync_feature_flags.py" = ["T201"] "./cypress/wait.py" = ["T201"] -"./posthog/management/commands/notify_helm_install.py" = [ - "T201", - "T203", -] +"./posthog/management/commands/notify_helm_install.py" = ["T201", "T203"] "./gunicorn.config.py" = ["T201"] "./posthog/management/commands/run_async_migrations.py" = ["T201"] "./posthog/management/commands/test_migrations_are_safe.py" = ["T201"]