Skip to content

Commit f0a2b6f

Browse files
committed
Revert "fix(test-checkin-in-trace-id): Use explicit venv creation and activation in scripts"
This reverts commit 30f59ea.
1 parent 30f59ea commit f0a2b6f

2 files changed

Lines changed: 2 additions & 16 deletions

File tree

test-checkin-in-trace-id/run-celery.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@ if ! command -v uv &> /dev/null; then
55
curl -LsSf https://astral.sh/uv/install.sh | sh
66
fi
77

8-
if [ ! -d ".venv" ]; then
9-
uv venv
10-
fi
11-
12-
source .venv/bin/activate
13-
uv pip install -e .
14-
158
redis-server &
169

17-
celery -A tasks worker --loglevel=DEBUG
10+
uv run celery -A tasks worker --loglevel=DEBUG

test-checkin-in-trace-id/run.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,4 @@ if ! command -v uv &> /dev/null; then
55
curl -LsSf https://astral.sh/uv/install.sh | sh
66
fi
77

8-
if [ ! -d ".venv" ]; then
9-
uv venv
10-
fi
11-
12-
source .venv/bin/activate
13-
uv pip install -e .
14-
15-
python main.py
8+
uv run python main.py

0 commit comments

Comments
 (0)