blob: b967f502e54a7094deed291bfd7d0db10570f4e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
language: python
python:
# These versions are unsupported by travis, even though smmap claims to still support these outdated versions
# - 2.4
# - 2.5
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install coveralls
script:
- ulimit -n 48
- ulimit -n
- nosetests --with-coverage
after_success:
- coveralls
|