diff --git a/.vscode/settings.json b/.vscode/settings.json index 42ff111..5f0fcb0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -30,19 +30,19 @@ "terminal.integrated.profiles.linux": { "bash": { "path": "bash", - "args": ["-c", "source ${workspaceFolder}/.venv/bin/activate && exec bash"] + "args": [ + "-c", + "source ${workspaceFolder}/.venv/bin/activate && exec bash" + ] } }, "python.testing.pytestEnabled": true, - "python.testing.pytestArgs": [ - "tests", - "-v", - "--tb=short" - ], - "python.testing.pytestPath": "./.venv/bin/pytest", + "python.testing.pytestArgs": ["tests"], + "python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest", "python.testing.unittestEnabled": false, - "python.testing.autoTestDiscoverOnSaveEnabled": true, + "python.testing.autoTestDiscoverOnSaveEnabled": false, "python.testing.cwd": "${workspaceFolder}", + "python.testing.debugPort": 5678, "files.exclude": { "**/*.egg-info": true, "**/htmlcov": true, @@ -53,4 +53,4 @@ "**/.mypy_cache": true, "**/.pytest_cache": true } -} \ No newline at end of file +} diff --git a/tests/test_alpine_bits_server.py b/tests/test_alpine_bits_server.py deleted file mode 100644 index e69de29..0000000