Revision 0101854f416cd0de8f87a512532cb314fe6154ce authored by Frank Ong on 04 March 2019, 18:26:55 UTC, committed by Frank Ong on 04 March 2019, 18:26:55 UTC
1 parent a4ebf93
Raw File
.travis.yml
language: python
python:
  - "3.5"
  - "3.6"

install:
  - pip install -r requirements.txt
  - pip install codecov flake8 sphinx sphinx_rtd_theme matplotlib

script:
  - bash run_tests.sh

after_success:
  - codecov
back to top