From 7249640061b84a5ef86724902c03255eb9a78613 Mon Sep 17 00:00:00 2001 From: Javier de la Puente Date: Fri, 1 Mar 2024 10:45:54 +0100 Subject: [PATCH] Add __init__ files --- charm/pyproject.toml | 2 +- charm/tests/__init__.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 charm/tests/__init__.py diff --git a/charm/pyproject.toml b/charm/pyproject.toml index c05fce777..e4730ddc4 100644 --- a/charm/pyproject.toml +++ b/charm/pyproject.toml @@ -73,4 +73,4 @@ per-file-ignores = {"tests/*" = ["D100","D101","D102","D103","D104"]} max-complexity = 10 [tool.codespell] -skip = "build,lib,venv,icon.svg,.tox,.git,.mypy_cache,.ruff_cache,.coverage" \ No newline at end of file +skip = "build,lib,venv,icon.svg,.tox,.git,.mypy_cache,.ruff_cache,.coverage" diff --git a/charm/tests/__init__.py b/charm/tests/__init__.py new file mode 100644 index 000000000..e3979c0f6 --- /dev/null +++ b/charm/tests/__init__.py @@ -0,0 +1,2 @@ +# Copyright 2024 Canonical Ltd. +# See LICENSE file for licensing details.