Codebase list python-magic-ahupp / 9cef5fab-1de1-4642-8d0d-2406f6444108/upstream .travis.yml
9cef5fab-1de1-4642-8d0d-2406f6444108/upstream

Tree @9cef5fab-1de1-4642-8d0d-2406f6444108/upstream (Download .tar.gz)

.travis.yml @9cef5fab-1de1-4642-8d0d-2406f6444108/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