summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 47cb22e552c828f932c7a59192275137d3aa1d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: python
python:
  - 2.7
  - 3.4
  - 3.5
  - 3.6
  - pypy
services:
  - memcached
install: python setup.py install
before_script: pip install -r test-requirements.txt
script:
  - flake8
  - nosetests
  - python -c 'import memcache; memcache._doctest()'