misc: Move pytest.ini to backend directory

Moving the `pytest.ini` file simplifies the `pytest` run command, and
also correctly mounts the file in the development Docker container.
This commit is contained in:
Michael Manganiello
2025-08-05 14:02:47 -03:00
parent ce5fcd42e4
commit d63895d410
3 changed files with 2 additions and 3 deletions

2
.vscode/tasks.json vendored
View File

@@ -23,7 +23,7 @@
{
"label": "Execute tests",
"type": "shell",
"command": "cd backend && uv run pytest -vv -c ../pytest.ini",
"command": "cd backend && uv run pytest -vv",
"problemMatcher": []
},
{

View File

@@ -185,7 +185,6 @@ cd backend
uv run pytest [path/file]
# or run the following command to run all tests
# the -vv switch increases the verbosity of the output, providing more detailed information during test execution.
# -c specifies the path to a configuration file for pytest.
uv run pytest -vv -c ../pytest.ini
uv run pytest -vv
```
````