๐Ÿ“ฆ brodul / jigglypuff

๐Ÿ“„ .travis.yml ยท 25 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25language: python
python:
  - "2.6"
  - "2.7"
# command to run tests
install:
  - "pip install flake8"
  - "pip install ."

script:
  - "nosetests --with-coverage --cover-package=jigglypuff"
  - "flake8 jigglypuff --ignore=E501"

notifications:
  irc:
    channels:
      - "chat.freenode.net#od1do7"
    on_success: change
  webhooks:
    urls:
      - http://jigglypuff.brodul.org/hubot/travis?user=brodul
    on_success: always
    on_failure: never
    on_start: never