summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: dcaac7743050452c7820d61358f89700bca15c88 (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
language: python
sudo: false
python:
  - 2.7
  - 3.4
  - 3.5
  - 3.6
  - pypy-5.6.0
  - pypy3.3-5.5-alpha
script:
  - coverage run -m zope.testrunner --test-path=src

after_success:
  - coveralls
notifications:
  email: false

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


cache: pip

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