Skip to content

Commit 95acdb9

Browse files
committed
try that
1 parent 1b75c8f commit 95acdb9

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

tests/integration/init-test/in_docker_test_script.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ function do_export () {
2424
}
2525

2626
echo "Preparing test project dir"
27-
python3 -m venv ~/venv
28-
source ~/venv/bin/activate
29-
pip install -U pip
27+
curl -LsSf https://astral.sh/uv/install.sh | sh
28+
source "$HOME/.local/bin/env"
3029

3130
echo "Installing reflex from local repo code"
3231
cp -r /reflex-repo ~/reflex-repo
33-
pip install ~/reflex-repo
34-
pip install psutil
32+
uv venv ~/venv
33+
source ~/venv/bin/activate
34+
uv pip install ~/reflex-repo
35+
uv pip install psutil
3536

3637
redis-server &
3738

0 commit comments

Comments
 (0)