25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
465 B

  1. language: python
  2. python:
  3. - "2.7"
  4. services:
  5. - mysql
  6. install:
  7. - CFLAGS=-O0 pip install -r requirements.txt
  8. - pip install --editable .
  9. script:
  10. cd ./test_sites/ &&
  11. frappe --reinstall -v test_site &&
  12. frappe -b -v test_site &&
  13. frappe --run_tests -v test_site
  14. before_script:
  15. - mysql -e 'create database travis' &&
  16. - echo "USE mysql;\nUPDATE user SET password=PASSWORD('travis') WHERE user='travis';\nFLUSH PRIVILEGES;\n" | mysql -u root