mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
dada007e61
It was supposed to perform tests that are only wanted to run once and it was also supposed to be possible to run outside of Travis, but no one ever looks in it at Travis and no one runs it manually. Even I use `sandbox/check_trans.py`.
22 lines
610 B
YAML
22 lines
610 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "pypy"
|
|
- "pypy3"
|
|
# 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
|
|
notifications:
|
|
email: false
|
|
matrix:
|
|
fast_finish: true
|