Ajout script de test
Mise a jour des stats du rocket chat Mise a jour de la liste de canaux
This commit is contained in:
parent
cfe7fb7439
commit
0fb4a19d2c
1 changed files with 61 additions and 0 deletions
61
script/test.sh
Executable file
61
script/test.sh
Executable file
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
|
||||
LOGFILE=test.log
|
||||
|
||||
git checkout ../public/data/*.json
|
||||
|
||||
date "+Test Date: %Y-%m-%d, Time: %H:%M:%S" > "$LOGFILE"
|
||||
git log -1 >> "$LOGFILE"
|
||||
|
||||
echo >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo 'pip install -r ./requirements.txt' >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo
|
||||
echo '----------------------------------------------------------------'
|
||||
echo 'pip install -r ./requirements.txt'
|
||||
echo '----------------------------------------------------------------'
|
||||
pip install -r ./requirements.txt 2>&1 | tee -a "$LOGFILE"
|
||||
|
||||
echo >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo 'getchannels.py' >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo
|
||||
echo '----------------------------------------------------------------'
|
||||
echo 'getchannels.py'
|
||||
echo '----------------------------------------------------------------'
|
||||
python getchannels.py 2>&1 | tee -a "$LOGFILE"
|
||||
|
||||
echo >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo 'getstats.py' >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo
|
||||
echo '----------------------------------------------------------------'
|
||||
echo 'getstats.py'
|
||||
echo '----------------------------------------------------------------'
|
||||
python getstats.py 2>&1 | tee -a "$LOGFILE"
|
||||
|
||||
echo >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo 'git status' >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo
|
||||
echo '----------------------------------------------------------------'
|
||||
echo 'git status'
|
||||
echo '----------------------------------------------------------------'
|
||||
git status 2>&1 | tee -a "$LOGFILE"
|
||||
|
||||
echo >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo 'git diff' >> "$LOGFILE"
|
||||
echo '----------------------------------------------------------------' >> "$LOGFILE"
|
||||
echo
|
||||
echo '----------------------------------------------------------------'
|
||||
echo 'git diff'
|
||||
echo '----------------------------------------------------------------'
|
||||
git diff 2>&1 | tee -a "$LOGFILE"
|
||||
|
||||
echo >> "$LOGFILE"
|
||||
echo
|
Loading…
Reference in a new issue