api de gestion de ticket, basé sur php-crud-api. Le but est de décorrélé les outils de gestion des données, afin
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tests.sh 386B

123456789101112131415
  1. #!/bin/sh
  2. echo "\nLaunching every tests"
  3. echo "‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾\n"
  4. echo "Starting server"
  5. echo "‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾"
  6. cd ..
  7. php -S 192.168.1.152:8080 &
  8. server=$!
  9. cd test
  10. sh login.sh
  11. find . -iname "*_*.sh" -type f -exec sh {} \;
  12. echo "Stoping server"
  13. echo "‾‾‾‾‾‾‾‾‾‾‾‾‾‾"
  14. kill $server