Mentions légales du service

Skip to content
Snippets Groups Projects

Adds/updates testing script

Merged RAVERDY Pierre-Guillaume requested to merge 1-mediator_container_script into master
3 files
+ 31
11
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 18
0
#!/bin/bash
if [ $# -ne 1 ]
then
echo "usage: $0 interval"
echo " where interval is the number of seconds between two calls to the laxparing API"
echo " example: $0 5"
exit
fi
# infinite loop
while :
do
python3 test_mediator_laxparking.py
echo "Press [CTRL+C] to stop.."
sleep $1
done
Loading