Codebase list python-magic-ahupp / 849ea0e3-4ec6-4adb-bf72-65831c908b77/upstream .travis.yml
849ea0e3-4ec6-4adb-bf72-65831c908b77/upstream

Tree @849ea0e3-4ec6-4adb-bf72-65831c908b77/upstream (Download .tar.gz)

.travis.yml @849ea0e3-4ec6-4adb-bf72-65831c908b77/upstreamraw · history · blame

language: python
dist: xenial
cache: pip

python:
  - "2.7"
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"

install:
  - pip install coverage
  - pip install .

script:
  - LC_ALL=en_US.UTF-8 coverage run ./test/test.py

after_success:
  - pip install coveralls && coveralls
  - pip install codecov && codecov