From 12adf230323815faf8bd2ae209baefe674ab665a Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Fri, 23 Feb 2024 01:11:40 +0100 Subject: [PATCH] rename test directory to "tests" --- .vscode/settings.json | 2 +- {test => tests}/__init__.py | 0 {test => tests}/comm/__init__.py | 0 {test => tests}/comm/method/__init__.py | 0 {test => tests}/comm/method/internal_test.py | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename {test => tests}/__init__.py (100%) rename {test => tests}/comm/__init__.py (100%) rename {test => tests}/comm/method/__init__.py (100%) rename {test => tests}/comm/method/internal_test.py (100%) diff --git a/.vscode/settings.json b/.vscode/settings.json index 8804daa..ee4a680 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,7 +2,7 @@ "python.testing.unittestArgs": [ "-v", "-s", - "./test", + "./tests", "-p", "*_test.py" ], diff --git a/test/__init__.py b/tests/__init__.py similarity index 100% rename from test/__init__.py rename to tests/__init__.py diff --git a/test/comm/__init__.py b/tests/comm/__init__.py similarity index 100% rename from test/comm/__init__.py rename to tests/comm/__init__.py diff --git a/test/comm/method/__init__.py b/tests/comm/method/__init__.py similarity index 100% rename from test/comm/method/__init__.py rename to tests/comm/method/__init__.py diff --git a/test/comm/method/internal_test.py b/tests/comm/method/internal_test.py similarity index 100% rename from test/comm/method/internal_test.py rename to tests/comm/method/internal_test.py