danhper/python-i18n

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: python
python:
  - "2.7"
  - "3.6"
  - "3.7"
  - "3.8"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script:
  - python setup.py test
  - coverage run --source=i18n setup.py test
after_success:
  - coveralls