We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b75c8f commit 95acdb9Copy full SHA for 95acdb9
1 file changed
tests/integration/init-test/in_docker_test_script.sh
@@ -24,14 +24,15 @@ function do_export () {
24
}
25
26
echo "Preparing test project dir"
27
-python3 -m venv ~/venv
28
-source ~/venv/bin/activate
29
-pip install -U pip
+curl -LsSf https://astral.sh/uv/install.sh | sh
+source "$HOME/.local/bin/env"
30
31
echo "Installing reflex from local repo code"
32
cp -r /reflex-repo ~/reflex-repo
33
-pip install ~/reflex-repo
34
-pip install psutil
+uv venv ~/venv
+source ~/venv/bin/activate
+uv pip install ~/reflex-repo
35
+uv pip install psutil
36
37
redis-server &
38
0 commit comments