File: .travis.yml

package info (click to toggle)
ipython-genutils 0.2.0-7
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 224 kB
  • sloc: python: 885; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python
python:
    - "nightly"
    - 3.4
    - 3.3
    - 2.7
sudo: false
env:
install:
    - pip install -e . coveralls
script:
    - nosetests --with-coverage --cover-package=ipython_genutils ipython_genutils

after_success:
    - coveralls
matrix:
    allow_failures:
        - python: "nightly"