diff --git a/tests_e2e/README.md b/tests_e2e/README.md index 717436d..945744f 100644 --- a/tests_e2e/README.md +++ b/tests_e2e/README.md @@ -21,11 +21,7 @@ More importantly, now I can easily debug different combinations of Minecraft ser ## Let me try ```shell -$ python3 -m venv venv -$ source venv/bin/activate -$ cd tests_e2e -$ pip install -r requirements.txt -$ ./run.py +$ ./run.sh ``` Proxy can be one of the following: diff --git a/tests_e2e/run.sh b/tests_e2e/run.sh index 4a71007..2e23583 100755 --- a/tests_e2e/run.sh +++ b/tests_e2e/run.sh @@ -1,3 +1,6 @@ #!/bin/sh +python3 -m venv venv +source venv/bin/activate +pip install -r requirements.txt python run.py "$@"