aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 4061c59bac3cc64effa6b4383cdfa6889f33f1c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python
python:
  - "2.6"
  - "2.7"

install:
  - mkdir void
  - mkdir void/Github
  - cp -R * void/Github/ || true
  - git clone git://git.code.sf.net/p/supybot/code supybot
  - pip install coverage
  - cd supybot
  - python setup.py install
  - cd ../void/Github

script:
  - coverage run --source plugin.py,local --omit '*init*' ../../supybot/scripts/supybot-test --plugins-dir=.. Github
  - coverage report -m

© 2014-2024 Faster IT GmbH | imprint | privacy policy