We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e9ece commit 4309f1cCopy full SHA for 4309f1c
3 files changed
test-threading/pyproject.toml
@@ -0,0 +1,12 @@
1
+[project]
2
+name = "test-threading"
3
+version = "0"
4
+requires-python = ">=3.12"
5
+
6
+dependencies = [
7
+ "ipdb>=0.13.13",
8
+ "sentry-sdk",
9
+]
10
11
+[tool.uv.sources]
12
+sentry-sdk = { path = "../../sentry-python", editable = true }
test-threading/requirements.txt
test-threading/run.sh
@@ -1,12 +1,8 @@
#!/usr/bin/env bash
-
set -euo pipefail
-reset
-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
-python main.py
+uv run python main.py
0 commit comments