mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
d14ff94e05
before ``` % travis lint .travis.yml Warnings for .travis.yml: [x] value for notifications section is empty, dropping [x] in notifications section: unexpected key on_success, dropping [x] in notifications section: unexpected key on_failure, dropping ``` now: ``` Hooray, .travis.yml looks valid :) ``` See also ProgVal/Supybot-plugins#217
23 lines
694 B
YAML
23 lines
694 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "pypy"
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
|
install:
|
|
- pip install -vr requirements.txt
|
|
# command to run tests, e.g. python setup.py test
|
|
script:
|
|
- echo $TRAVIS_PYTHON_VERSION
|
|
- python setup.py install
|
|
- supybot-test test --plugins-dir=./build/lib*/supybot/plugins/ --no-network --disable-multiprocessing --exclude=./build/lib*/supybot/plugins/Scheduler --exclude=./build/lib*/supybot/plugins/Filter
|
|
after_success:
|
|
- if [ "$TRAVIS_PYTHON_VERSION" = "3.4" ]; then bash .travis.runonce.bash;fi
|
|
notifications:
|
|
email: false
|
|
matrix:
|
|
fast_finish: true
|