summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: aa9846957a78ed22bac5f1d9419cd57f1904ffd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: python
python:
  - 3.6
  - 3.7
  - 3.8
  - 3.9
  - 3.10
  - 3.11
  - 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()'