summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c9f6e549df0c111be11c9745547b6fc7e9107f05 (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
29
30
31
language: python
dist: xenial
matrix:
  include:
    - python: 2.7
    - python: 3.5
    - python: 3.6
    - python: 3.7
    - python: 3.8
    - python: pypy2.7-6.0
    - python: pypy3.5-6.0
    - python: 2.7
      env:
          - PURE_PYTHON=1
          - ZOPE_WATCH_CHECKERS=1
    - python: 3.7
      env: ZOPE_WATCH_CHECKERS=1
    - python: 3.7
      env: PURE_PYTHON=1
install:
    - pip install -U pip setuptools
    - pip install -U coveralls coverage
    - pip install -U -e .[test,docs]
script:
    - coverage run -m zope.testrunner --test-path=src
    - coverage run -a -m sphinx -b doctest -d docs/_build/doctrees docs docs/_build/doctest
after_success:
    - coveralls
notifications:
    email: false
cache: pip