]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Development: allow devcontainer pytest to find tests (#10671)
authorsidey79 <7968127+sidey79@users.noreply.github.com>
Wed, 27 Aug 2025 22:23:23 +0000 (00:23 +0200)
committerGitHub <noreply@github.com>
Wed, 27 Aug 2025 22:23:23 +0000 (15:23 -0700)
* Fix:[settings.json]:  update pytest configuration in VSCode settings

* chore[pckage.json]: Add pnmp as packagemanager

* Chore[package.json]: revert

---------

Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com>
.devcontainer/vscode/settings.json

index 86c718cad92501896aeac1487080252a0d83cf2e..bd8251a4a3ca3313d2820386bd9c5a3b2cd6ba1b 100644 (file)
@@ -1,11 +1,10 @@
 {
-    "python.testing.pytestArgs": [
-        "src"
-    ],
+    "python.testing.pytestArgs": [],
     "python.testing.unittestEnabled": false,
     "python.testing.pytestEnabled": true,
     "files.watcherExclude": {
         "**/.venv/**": true,
         "**/pytest_cache/**": true
-    }
+    },
+    "python.testing.cwd": "${workspaceFolder}/src"
 }