Skip to content

Commit

Permalink
make run.sh full drop-in replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
turikhay committed Dec 28, 2023
1 parent f1dbe77 commit 0a8a591
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 1 addition & 5 deletions tests_e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <proxy> <version> <command>
$ ./run.sh <proxy> <version> <command>
```

Proxy can be one of the following:
Expand Down
3 changes: 3 additions & 0 deletions tests_e2e/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/bin/sh

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python run.py "$@"

0 comments on commit 0a8a591

Please sign in to comment.