We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e21b464 commit ce6edabCopy full SHA for ce6edab
3 files changed
test-tracing-twp-dsc/pyproject.toml
@@ -0,0 +1,16 @@
1
+[project]
2
+name = "test-tracing-twp-dsc"
3
+version = "0"
4
+requires-python = ">=3.12"
5
+
6
+dependencies = [
7
+ "aiohttp>=3.11.14",
8
+ "fastapi>=0.115.11",
9
+ "honcho>=2.0.0",
10
+ "ipdb>=0.13.13",
11
+ "uvicorn>=0.34.0",
12
+ "sentry-sdk[fastapi]",
13
+]
14
15
+[tool.uv.sources]
16
+sentry-sdk = { path = "../../sentry-python", editable = true }
test-tracing-twp-dsc/requirements.txt
test-tracing-twp-dsc/run.sh
@@ -1,11 +1,8 @@
#!/usr/bin/env bash
-
set -euo pipefail
-python -m venv .venv
-source .venv/bin/activate
-pip install -r requirements.txt
+if ! command -v uv &> /dev/null; then
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+fi
-# see Procfile for the commands that are run
-honcho start
+uv run honcho start
0 commit comments