Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 2f039bf5c4a4389d20939ceed82a12aba5f1ff1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
language: python
os: linux
dist: bionic
cache: pip
jobs:
  include:
  - python: 2.6
    dist: trusty
  - python: 2.7
  - python: 3.4
    dist: xenial
  - python: 3.5
  - python: 3.6
  - python: 3.7
  - python: 3.8
  - python: 3.9
  - python: pypy
    dist: xenial
  - python: pypy3
  - python: 3.8
    env: TOXENV=flake8
  - python: 3.8
    env: TOXENV=docs
install: pip install tox
script: tox -e "${TOXENV:-$(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/')}" --skip-missing-interpreters false