.travis.yml 191 B

12345678910111213
  1. language: python
  2. python:
  3. - "3.5"
  4. services:
  5. - redis-server
  6. script:
  7. - python3 setup.py install
  8. - cd tests
  9. - python3 test_api.py
  10. - python3 test_db.py
  11. - python3 test_schedule.py