From a2910d72e8ec3e85967c0c41a1a854645a9d7567 Mon Sep 17 00:00:00 2001 From: Michal Rzepka Date: Mon, 22 Dec 2025 11:32:28 +0100 Subject: [PATCH] move tests directory to repository root --- setup.cfg | 2 +- {src/tests => tests}/__init__.py | 0 {src/tests => tests}/test_backend.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {src/tests => tests}/__init__.py (100%) rename {src/tests => tests}/test_backend.py (100%) diff --git a/setup.cfg b/setup.cfg index b65de62..da92b6e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -46,6 +46,6 @@ keyring.backends = ArtifactsKeyringBackend = artifacts_keyring:ArtifactsKeyringBackend [tool:pytest] -testpaths = src/tests +testpaths = tests python_functions = test_* python_files = test_*.py diff --git a/src/tests/__init__.py b/tests/__init__.py similarity index 100% rename from src/tests/__init__.py rename to tests/__init__.py diff --git a/src/tests/test_backend.py b/tests/test_backend.py similarity index 100% rename from src/tests/test_backend.py rename to tests/test_backend.py