master > master: requirements verschoben
This commit is contained in:
@@ -22,7 +22,7 @@ Das hier soll einfach funktionieren.
|
||||
```bash
|
||||
chmod +x scripts/*.sh
|
||||
```
|
||||
- In `scripts/build.sh` gibt es eine Zeile, die zur Ausführung der Python-Skripte notwendigen Module über PIP installieren lässt. (Die Liste der Packages findet man in der Datei `requirements`). Diese Zeile kann man ruhig nach der ersten Ausführung rauskommentieren.
|
||||
- In `scripts/build.sh` gibt es eine Zeile, die zur Ausführung der Python-Skripte notwendigen Module über PIP installieren lässt. (Die Liste der Packages findet man in der Datei `scripts/requirements`). Diese Zeile kann man ruhig nach der ersten Ausführung rauskommentieren.
|
||||
|
||||
## Daten ##
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ function call_python() {
|
||||
}
|
||||
|
||||
function check_requirements() {
|
||||
call_python -m pip install "$( cat requirements )" >> /dev/null;
|
||||
call_python -m pip install "$( cat scripts/requirements )" >> /dev/null;
|
||||
}
|
||||
|
||||
function run_code() {
|
||||
|
||||
@@ -13,7 +13,7 @@ function call_python() {
|
||||
}
|
||||
|
||||
function check_requirements() {
|
||||
call_python -m pip install "$( cat requirements )" >> /dev/null;
|
||||
call_python -m pip install "$( cat scripts/requirements )" >> /dev/null;
|
||||
}
|
||||
|
||||
function run_unittests(){
|
||||
|
||||
Reference in New Issue
Block a user