diff --git a/.vscode/settings.json b/.vscode/settings.json index 6aa4308..7ee505d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,8 +7,8 @@ "editor.defaultFormatter": "ms-python.black-formatter" }, "python.testing.pytestArgs": [ - "src" - ], + "tests" + ], "python.testing.unittestEnabled": false, "python.testing.pytestEnabled": true } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 2b02aa6..58523f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,4 +5,5 @@ line-length = 120 [tool.pytest.ini_options] markers = [ "slow: marks tests as slow (deselect with '-m \"not slow\"')", -] \ No newline at end of file +] +testpaths = ["./tests"]