Codebase list backoff / d62732b7-8695-4d4e-b347-52f1f07cfca4/upstream .travis.yml
d62732b7-8695-4d4e-b347-52f1f07cfca4/upstream

Tree @d62732b7-8695-4d4e-b347-52f1f07cfca4/upstream (Download .tar.gz)

.travis.yml @d62732b7-8695-4d4e-b347-52f1f07cfca4/upstreamraw · history · blame

language: python
python:
  - "2.7"
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"
  - "3.9"
matrix:
  include:
  - python: "3.5"
    env: PYTHONASYNCIODEBUG=x
  - python: "3.6"
    env: PYTHONASYNCIODEBUG=x
  - python: "3.7"
    env: PYTHONASYNCIODEBUG=x
  - python: "3.8"
    env: PYTHONASYNCIODEBUG=x
  - python: "3.9"
    env: PYTHONASYNCIODEBUG=x

before_install:
  - pip install poetry more-itertools
install:
  - poetry install
script: poetry run make check
after_success: coveralls
notifications:
  email: false