https://github.com/wwrechard/pydlm
Raw File
Tip revision: c3fc73d3b3b2c0bb1970febc9f943c65bc84b1ae authored by Sam on 30 August 2017, 02:05:07 UTC
update the setup.
Tip revision: c3fc73d
.travis.yml
language: python
python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.5-dev" # 3.5 development branch
  - "3.6"
  - "3.6-dev" # 3.6 development branch
  #- "3.7-dev" # 3.7 development branch
  #- "nightly" # currently points to 3.7-dev
  # command to install dependencies.
install:
  - sudo apt-get install python-matplotlib
  - python setup.py install
  - pip install coveralls
script: 
  - python -m unittest discover
  - coverage run --source . -m unittest discover
after_success: coveralls
back to top