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