diff --git a/esmerald/core/directives/base.py b/esmerald/core/directives/base.py index 972e0adc..7b544b70 100644 --- a/esmerald/core/directives/base.py +++ b/esmerald/core/directives/base.py @@ -8,9 +8,7 @@ class BaseDirective(ArbitraryExtraBaseModel, LilyaBaseDirective): - """The base class from which all directrives derive""" - - help: str = "" + """The base class from which all directives derive.""" def get_version(self) -> str: """ diff --git a/pyproject.toml b/pyproject.toml index b6a121cd..31e7248c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -173,8 +173,8 @@ features = ["all", "testing"] [tool.hatch.envs.test.scripts] # needs docker services running -test = "hatch test -- {args} --disable-warnings" -test_man = "hatch test -- {args} -s -vv --disable-warnings" +test = "hatch test -- {args}" +test_man = "hatch test -- {args} -s -vv" coverage = "hatch test -- --cov=esmerald --cov=tests --cov-report=term-missing:skip-covered --cov-report=html tests {args}" check_types = "mypy -p esmerald"