File: .travis.yml

package info (click to toggle)
simpleeval 0.9.6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 144 kB
  • sloc: python: 732; sh: 18; makefile: 17
file content (20 lines) | stat: -rw-r--r-- 478 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: python
python:
    - "2.7"
    - "3.2"
    - "3.3"
    - "3.4"
    - "3.5"
    - "3.6"
install:
 - pip install nose
 - pip install coveralls
 # coverage no longer supports python 3.2...
 # - pip install coverage
 - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
 - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi
script:
 - nosetests
 - coverage run -m nose
after_success:
 - coveralls