summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 17d63804dd4b2e2ffcba04a7b6c3cc5b99309736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: python
python:
  - "3.4"
  - "3.5"
  - "3.6"
  # - "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
script: 
  - ulimit -n 48
  - ulimit -n
  - nosetests -v --with-coverage
after_success:
  - coveralls