From 196704d7bb025d354edc265cdd6eadbd12192111 Mon Sep 17 00:00:00 2001 From: raj_mathe Date: Fri, 29 Oct 2021 15:24:04 +0200 Subject: [PATCH] master > master: README --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c9cc786..9d4dc9e 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,15 @@ Alternativ verwende man `python3 -m pip install --upgrade {name}` bzw. `py -3 .. Um den Python Code auszuführen, bspw. im Bash: ```bash +## Anzeigen der Hilfsanleitung: +python3 code/main.py -h; # linux, OSX +py -3 code/main.py -h; # Windows +## Ausführung der Testfälle in code/config.yml: python3 code/main.py all; # linux, OSX -py -3 code/main.py all; # Windows +py -3 code/main.py all; # Windows +## Mit Infos über Schritte: +python3 code/main.py --debug all; # linux, OSX +py -3 code/main.py --debug all; # Windows ``` Oder man erstelle einen bash Skript wie `run.sh`, trage die Befehle da ein und führe ```bash @@ -63,5 +70,3 @@ chmod +x run.sh; # nur einmalig nötig ./run.sh ``` aus. - -Der Befehl `[python3 | py -3] code/main.py -h` zeigt die Gebrauchsanleitung an.