您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910
  1. #!/bin/bash
  2. # Set sleep period as first argument, defaults to 30 seconds
  3. SLEEP_PERIOD=$1
  4. : ${SLEEP_PERIOD:=30}
  5. while true; do
  6. ./manage.py test oscar --settings=test_settings
  7. sleep $SLEEP_PERIOD
  8. done