aboutsummaryrefslogtreecommitdiff
blob: 19aa19a1c41a8cc390e55d8924d5f3de1adaadf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
function run_test {
  if $1 $2
  then
    date +"%Y-%m-%d %H:%M:%S Test of $3 was succesfull" >>tests.log
  else
    date +"%Y-%m-%d %H:%M:%S Test of $3 failed" >>tests.log
  fi
}
run_test python bot/tests/run_test.py MeetBot
run_test python bot/Reminder/run_test.py Reminder
pushd site
run_test "bundle exec" "rake" WebApp
popd