From 41adad8f6de8ee178d7a7de86d8cb0649df77bf3 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 2 Nov 2014 16:38:00 -0800 Subject: [PATCH] add travis-ci build files? --- .gitignore | 46 +++++++++++++++++++++------------------------- .travis.yml | 23 +++++++++++++++++++++++ requirements.txt | 1 + 3 files changed, 45 insertions(+), 25 deletions(-) create mode 100644 .travis.yml create mode 100644 requirements.txt 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