File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ services:
2727 POSTGRES_USER : admin
2828 POSTGRES_PASSWORD : postgres
2929
30+ ports :
31+ - " 5432:5432"
32+ # For local developemnt, we need to forward the database port here too.
3033 # Add "forwardPorts": ["5432"] to **devcontainer.json** to forward PostgreSQL locally.
3134 # (Adding the "ports" property to this file will not forward from a Codespace.)
3235
Original file line number Diff line number Diff line change @@ -146,3 +146,5 @@ npm-debug.log*
146146node_modules
147147static /
148148
149+ # Playwright test trace
150+ test-results /
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ python_version = 3.12
1111exclude = [" .venv/*" ]
1212
1313[tool .pytest .ini_options ]
14- addopts = " -ra --cov "
14+ addopts = " -ra"
1515testpaths = [" tests" ]
16- pythonpath = [' src' ]
16+ pythonpath = [' src/backend ' ]
1717filterwarnings = [" ignore::DeprecationWarning" ]
1818
1919[[tool .mypy .overrides ]]
Original file line number Diff line number Diff line change 44pre-commit
55pip-tools
66pip-compile-cross-platform
7+ playwright
78pytest
8- pytest-cov
99pytest-asyncio
10+ pytest-cov
11+ pytest-playwright
1012pytest-snapshot
11- mypy
1213locust
You can’t perform that action at this time.
0 commit comments