dorokhin/lightware-api

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: python
python:
  - "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
# command to install dependencies
install:
  - pip install -r requirements.txt
# command to run tests
script:
  - python manage.py test
  - coverage run --source app  manage.py test
  - coverage report
  - codecov