File tree Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1+ .env
2+ .coverage
3+ .gitignore
4+ .idea
5+ .mypy_cache
6+ .ruff_cache
7+ .vscode
8+ .git
9+ .pytest_cache
10+ .DS_Store
11+ * .yml
12+ Dockerfile
13+ ** /__pycache__
14+ .hypothesis
15+ .venv
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ WORKDIR /code
1919COPY pyproject.toml .
2020COPY uv.lock .
2121
22- RUN uv sync --all-extras --frozen
22+ RUN uv sync --all-extras --frozen --no-install-project
2323
2424COPY . .
2525
Original file line number Diff line number Diff line change 77 docker compose run --service-ports application bash
88
99test * args : down && down
10- docker compose run application uv run pytest {{ args }}
11-
10+ docker compose run application uv run --no-sync pytest {{ args }}
1211
1312build :
1413 docker compose build application
Original file line number Diff line number Diff line change @@ -86,3 +86,8 @@ asyncio_default_fixture_loop_scope = "function"
8686
8787[tool .coverage .run ]
8888concurrency = [" thread" , " greenlet" ]
89+
90+ [tool .coverage .report ]
91+ exclude_also = [
92+ " if typing.TYPE_CHECKING:" ,
93+ ]
You can’t perform that action at this time.
0 commit comments