Codebase list python-magic-ahupp / 40e283d8-dae8-467a-aac7-33481d24bed6/upstream .travis.yml
40e283d8-dae8-467a-aac7-33481d24bed6/upstream

Tree @40e283d8-dae8-467a-aac7-33481d24bed6/upstream (Download .tar.gz)

.travis.yml @40e283d8-dae8-467a-aac7-33481d24bed6/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