diff --git a/.gitignore b/.gitignore index f24cd99..12e1cf7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,27 +1,23 @@ -*.py[co] - -# Packages -*.egg -*.egg-info -dist -build -eggs -parts -bin -var -sdist -develop-eggs -.installed.cfg - -# Installer logs -pip-log.txt - -# Unit test / coverage reports -.coverage -.tox - -#Translations +__pycache__/ +*.py[cod] *.mo +**/test-data/ +**/test-conf/ +**/test-logs/ +backup/ -#Mr Developer -.mr.developer.cfg +# emacs/vi +*.swo +*.swp +*~ + +# OS-Generated +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +Desktop.ini +$RECYCLE.BIN/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..595b13b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: python +python: + - "2.7" + - "3.2" + - "3.3" + - "3.4" + - "pypy" + - "pypy3" +# Fetch dependencies +install: + - pip install -vr requirements.txt +# Run supybot-test +script: + - cd .. && supybot-test -c supybot-lastfm +notifications: + email: false +matrix: + fast_finish: true + allow_failures: + - python: "3.2" + - python: "3.3" + - python: "pypy" + - python: "pypy3" diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8ab45f1 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +git+https://github.com/ProgVal/Limnoria.git