summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 05c149d6c006aad7d6dbd8f467bcb631ce260562 (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
26
27
28
language: python

python:
  - 2.7
  - 3.5
  - 3.6
  - 3.7
  - 3.8
  - pypy
  - pypy3

install:
  - pip install -U pip setuptools
  - pip install -U coveralls coverage zope.testrunner
  - pip install -U -e ".[test]"

script:
  - coverage run -m zope.testrunner --test-path=src --auto-color --auto-progress

after_success:
  - coveralls

notifications:
  email: false

cache: pip
before_cache:
  - rm -f $HOME/.cache/pip/log/debug.log