diff --git a/cosmos/constants.py b/cosmos/constants.py index b6af7f6409..0c3c33dced 100644 --- a/cosmos/constants.py +++ b/cosmos/constants.py @@ -79,6 +79,8 @@ class TestBehavior(Enum): Behavior of the tests. """ + __test__ = False + BUILD = "build" NONE = "none" AFTER_EACH = "after_each" @@ -116,6 +118,8 @@ class TestIndirectSelection(Enum): Modes to configure the test behavior when performing indirect selection. """ + __test__ = False + EAGER = "eager" CAUTIOUS = "cautious" BUILDABLE = "buildable"