Set up travis-ci and update .gitignore

This commit is contained in:
GLolol 2014-10-24 11:18:43 -07:00
parent a69b7e9d64
commit 21282cfdd5
3 changed files with 30 additions and 0 deletions

4
.gitignore vendored
View File

@ -1,6 +1,10 @@
__pycache__/
*.py[cod]
*.mo
**/test-data/
**/test-conf/
**/test-logs/
backup/
# emacs/vi
*.swo

24
.travis.yml Normal file
View File

@ -0,0 +1,24 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
# Fetch dependencies
install:
- pip install -vr requirements.txt||true
# Run supybot-test
script:
- echo $TRAVIS_PYTHON_VERSION
- supybot-test --plugins-dir=. --no-network
notifications:
email: false
matrix:
fast_finish: true
allow_failures:
- python: "3.2"
- python: "3.3"
branches:
except:
- /^archive-.*$/

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
git+https://github.com/ProgVal/Limnoria.git
beautifulsoup4