Skip to content

Commit 7ac3520

Browse files
committed
Use UV_NO_SYNC
1 parent 6fed8ab commit 7ac3520

File tree

3 files changed

+119
-115
lines changed

3 files changed

+119
-115
lines changed

.github/workflows/pull_request.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
outputs:
1717
docker-tag: ${{ steps.docker-tag.outputs.docker-tag }}
1818
env:
19+
UV_NO_SYNC: 1
1920
PYTHON_APP_ENVIRONMENT: development
20-
CI: true # Enable pytest CI mode
2121
steps:
2222
- name: Checkout repository
2323
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -42,12 +42,12 @@ jobs:
4242
shell: bash
4343

4444
- name: Unit tests
45-
run: uv run --frozen -- pytest --cov=python_template --cov-branch tests/unit
45+
run: uv run -- pytest --cov=python_template --cov-branch tests/unit
4646
shell: bash
4747

4848
- name: Integration tests
4949
if: false
50-
run: uv run --frozen -- pytest --cov=python_template --cov-branch --cov-append tests/integration
50+
run: uv run -- pytest --cov=python_template --cov-branch --cov-append tests/integration
5151
shell: bash
5252

5353
- name: Set up Docker Buildx

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ dependencies = [
66
"aiohttp>=3.13.3",
77
"aspy-dependency-injection>=0.5.0",
88
"asyncpg>=0.31.0",
9-
"azure-monitor-opentelemetry>=1.8.3",
9+
"azure-monitor-opentelemetry>=1.8.4",
1010
"fastapi[standard-no-fastapi-cloud-cli]>=0.128.0",
11-
"greenlet>=3.3.0",
11+
"greenlet>=3.3.1",
1212
"pydantic>=2.12.5",
1313
"pydantic-settings[azure-key-vault]>=2.12.0",
1414
"sqlmodel>=0.0.31",
@@ -21,8 +21,8 @@ dev = [
2121
"pytest-asyncio>=1.3.0",
2222
"pytest-cov>=7.0.0",
2323
"pytest-mock>=3.15.1",
24-
"ruff>=0.14.11",
25-
"ty>=0.0.11",
24+
"ruff>=0.14.14",
25+
"ty>=0.0.13",
2626
]
2727

2828
[build-system]

0 commit comments

Comments
 (0)