summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 66400ae9e03a0ec10badb91e8bc24f957db7e570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: python
python:
  - "2.6"
  - "2.7"
  - "3.3"
  - "3.4"
  - "3.5"
  # - "pypy" - won't work as smmap doesn't work (see smmap/.travis.yml for details)

git:
  # a higher depth is needed for one of the tests - lets fet
  depth: 1000
install:
  - pip install coveralls
  - pip install -I git+https://github.com/ankostis/smmap.git@v2.1.0.dev1
script: 
  - ulimit -n 48
  - ulimit -n
  - nosetests -v --with-coverage
after_success:
  - coveralls