From b9748f9fa6ddca5e087a456312959c6d8544cb92 Mon Sep 17 00:00:00 2001 From: Robbie Coomber Date: Fri, 21 Jun 2024 09:42:59 +0100 Subject: [PATCH] Make it easier to run test_parser_cpp from pytcharm --- posthog/hogql/test/test_parser_cpp.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/posthog/hogql/test/test_parser_cpp.py b/posthog/hogql/test/test_parser_cpp.py index 0047f70cb00c5..6ae8c498a6c14 100644 --- a/posthog/hogql/test/test_parser_cpp.py +++ b/posthog/hogql/test/test_parser_cpp.py @@ -2,4 +2,7 @@ class TestParserCpp(parser_test_factory("cpp")): - pass + def test_empty(self): + # this test only exists to make pycharm recognise this class as a test class + # the actual tests are in the parent class + pass