File: .travis.yml

package info (click to toggle)
python-parsley 1.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,048 kB
  • sloc: python: 9,897; makefile: 127
file content (23 lines) | stat: -rw-r--r-- 374 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"

install:
  - "bash .travis.install"
  - "pip install pytest coveralls pytz ."
script:
  - "coverage run $(which py.test) ."
after_success:
  - "coveralls"
  
notifications:
  email: false
  irc:
    channels:
    - chat.freenode.org#parsley
    on_success: always
    on_failure: always
    use_notice: true