summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c07980dec6367a4d2ed4c187b1c9da6b7049a7b9 (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
32
33
language: python

matrix:
  exclude:
  - python: pypy
    env: LMDB_FORCE_CPYTHON=1

python:
  - 2.7
  - 3.4
  - 3.5
  - 3.6
  - 3.7
  - nightly
  - pypy

env:
  - LMDB_FORCE_CFFI=1
  - LMDB_FORCE_CPYTHON=1
install:
  - sudo apt-get install gdb
  - pip install cffi

  - python setup.py develop
before_script:
  - source misc/helpers.sh

script:
  - >
    with_gdb python -m pytest tests

notifications:
  email: false